Searched refs:wakeup_swapper (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/sys/kern/
H A Dkern_thread.c521 int wakeup_swapper; local
566 wakeup_swapper = thread_unsuspend_one(
569 if (wakeup_swapper)
716 int wakeup_swapper; local
722 wakeup_swapper = 0;
726 wakeup_swapper |= thread_unsuspend_one(td2, p, true);
728 wakeup_swapper |= sleepq_abort(td2, EINTR);
733 wakeup_swapper |= thread_unsuspend_one(td2, p, false);
735 wakeup_swapper |= sleepq_abort(td2, ERESTART);
748 wakeup_swapper |
780 int remaining, wakeup_swapper; local
956 int wakeup_swapper; local
1115 int wakeup_swapper; local
1154 int wakeup_swapper; local
[all...]
H A Dkern_condvar.c398 int wakeup_swapper; local
402 wakeup_swapper = 0;
411 wakeup_swapper = sleepq_signal(cvp, SLEEPQ_CONDVAR, 0,
416 if (wakeup_swapper)
427 int wakeup_swapper; local
435 wakeup_swapper = 0;
441 wakeup_swapper = sleepq_broadcast(cvp, SLEEPQ_CONDVAR, pri, 0);
444 if (wakeup_swapper)
H A Dkern_synch.c343 int wakeup_swapper; local
346 wakeup_swapper = sleepq_broadcast(ident, SLEEPQ_SLEEP, 0, 0);
348 if (wakeup_swapper) {
350 ("wakeup and wakeup_swapper and proc0"));
363 int wakeup_swapper; local
366 wakeup_swapper = sleepq_signal(ident, SLEEPQ_SLEEP, 0, 0);
368 if (wakeup_swapper)
375 int wakeup_swapper; local
378 wakeup_swapper = sleepq_signal(ident, SLEEPQ_SLEEP | SLEEPQ_UNFAIR,
381 if (wakeup_swapper)
[all...]
H A Dsubr_sleepqueue.c896 int wakeup_swapper; local
937 wakeup_swapper = sleepq_resume_thread(sq, besttd, pri);
939 return (wakeup_swapper);
977 int wakeup_swapper; local
985 wakeup_swapper = 0;
989 wakeup_swapper |= sleepq_resume_thread(sq, td, pri);
993 return (wakeup_swapper);
1007 int wakeup_swapper; local
1010 wakeup_swapper = 0;
1031 wakeup_swapper
1055 int wakeup_swapper; local
1133 int i, wakeup_swapper; local
[all...]
H A Dkern_lock.c301 int queue, wakeup_swapper; local
303 wakeup_swapper = 0;
345 wakeup_swapper =
371 wakeup_swapper |= sleepq_broadcast(&lk->lock_object, SLEEPQ_LK,
378 return (wakeup_swapper);
659 int error, ipri, itimo, queue, wakeup_swapper; local
713 wakeup_swapper = 0;
931 wakeup_swapper |= wakeupshlk(lk, file, line);
1266 wakeup_swapper =
1288 wakeup_swapper |
[all...]
H A Dkern_sx.c472 int wakeup_swapper; local
514 wakeup_swapper = 0;
519 wakeup_swapper = sleepq_broadcast(&sx->lock_object, SLEEPQ_SX,
523 if (wakeup_swapper)
835 int queue, wakeup_swapper; local
892 wakeup_swapper = sleepq_broadcast(&sx->lock_object, SLEEPQ_SX, 0,
895 if (wakeup_swapper)
1223 int wakeup_swapper = 0; local
1259 wakeup_swapper = sleepq_broadcast(&sx->lock_object, SLEEPQ_SX,
1264 if (wakeup_swapper)
[all...]
H A Dkern_sig.c2143 int wakeup_swapper; local
2349 wakeup_swapper = 0;
2353 wakeup_swapper = sleepq_abort(td, intrval);
2356 if (wakeup_swapper)
2377 wakeup_swapper = sig_suspend_threads(td, p, 1);
2391 if (wakeup_swapper)
2426 int wakeup_swapper; local
2428 wakeup_swapper = 0;
2483 wakeup_swapper = sleepq_abort(td, intrval);
2498 if (wakeup_swapper)
2506 int wakeup_swapper; local
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_schedule.c104 int ret, wakeup_swapper; local
106 ret = wakeup_swapper = 0;
110 wakeup_swapper = sleepq_signal(task, SLEEPQ_SLEEP, 0, 0);
114 if (wakeup_swapper)
342 int wakeup_swapper; local
345 wakeup_swapper = sleepq_signal(wchan, SLEEPQ_SLEEP, 0, 0);
347 if (wakeup_swapper)
H A Dlinux_compat.c2003 int wakeup_swapper; local
2008 wakeup_swapper = sleepq_broadcast(c, SLEEPQ_SLEEP, 0, 0);
2012 wakeup_swapper = sleepq_signal(c, SLEEPQ_SLEEP, 0, 0);
2015 if (wakeup_swapper)

Completed in 86 milliseconds