wait.h 216 B

12345678910111213141516
  1. #ifndef WAIT_COMPLETION_H
  2. #define WAIT_COMPLETION_H
  3. int wait_completion_schedule();
  4. u16 wait_completion(int (*condition)(void), int (*callback)(void *), void *priv);
  5. int wait_completion_del(u16 id);
  6. #endif