/src/sys/sys/ |
sleepq.h | 67 int sleepq_block(int, bool, const struct syncobj *, int);
|
/src/sys/kern/ |
kern_condvar.c | 181 (void)sleepq_block(0, false, &cv_syncobj, nlocks); 202 error = sleepq_block(0, true, &cv_syncobj, nlocks); 225 error = sleepq_block(timo, false, &cv_syncobj, nlocks); 250 error = sleepq_block(timo, true, &cv_syncobj, nlocks);
|
kern_turnstile.c | 243 * We own the lock: stop here, sleepq_block() 433 sleepq_block(0, false, sobj, nlocks);
|
kern_synch.c | 206 return sleepq_block(timo, catch_p, &sleep_syncobj, nlocks); 232 error = sleepq_block(timo, catch_p, &sleep_syncobj, nlocks); 259 error = sleepq_block(timo, intr, &kpause_syncobj, nlocks);
|
kern_sleepq.c | 335 * sleepq_block: 338 * sleepq_block() may return early under exceptional conditions, for 344 sleepq_block(int timo, bool catch_p, syncobj_t *syncobj, int nlocks) function in typeref:typename:int 381 * sleepq_block(). If that happens l_stat will be LSONPROC
|
sys_lwp.c | 544 error = sleepq_block(timo, true, &lwp_park_syncobj, 0);
|
kern_timeout.c | 626 sleepq_block(0, false, &callout_syncobj, nlocks);
|
sys_select.c | 330 error = sleepq_block(timo, true, &select_sobj, 0);
|
/src/sys/rump/librump/rumpkern/ |
sleepq.c | 87 sleepq_block(int timo, bool catch, syncobj_t *syncobj __unused, int nlocks) function in typeref:typename:int
|