sleepq.h | 51 typedef struct sleepq sleepq_t; typedef in typeref:struct:sleepq 53 void sleepq_init(sleepq_t *); 54 void sleepq_remove(sleepq_t *, lwp_t *, bool); 55 int sleepq_enter(sleepq_t *, lwp_t *, kmutex_t *); 56 void sleepq_enqueue(sleepq_t *, wchan_t, const char *, 58 void sleepq_transfer(lwp_t *, sleepq_t *, sleepq_t *, wchan_t, const char *, 63 void sleepq_wake(sleepq_t *, wchan_t, u_int, kmutex_t *);
|