Home
last modified time | relevance | path

Searched refs:td_inhibitors (Results 1 – 6 of 6) sorted by relevance

/freebsd/tools/sched/
H A Dschedgraph.d56 (((td)->td_inhibitors & TDI_SLEEPING) != 0 ? "sleep" : \
57 ((td)->td_inhibitors & TDI_SUSPENDED) != 0 ? "suspended" : \
58 ((td)->td_inhibitors & TDI_SWAPPED) != 0 ? "swapped" : \
59 ((td)->td_inhibitors & TDI_LOCK) != 0 ? "blocked" : \
60 ((td)->td_inhibitors & TDI_IWAIT) != 0 ? "iwait" : "yielding");
/freebsd/sys/sys/
H A Dproc.h264 int td_inhibitors; /* (t) Why can not run. */ member
582 #define TD_IS_SLEEPING(td) ((td)->td_inhibitors & TDI_SLEEPING)
584 #define TD_IS_SUSPENDED(td) ((td)->td_inhibitors & TDI_SUSPENDED)
585 #define TD_ON_LOCK(td) ((td)->td_inhibitors & TDI_LOCK)
586 #define TD_AWAITING_INTR(td) ((td)->td_inhibitors & TDI_IWAIT)
603 (((td)->td_inhibitors & TDI_SLEEPING) != 0 ? "sleep" : \
604 ((td)->td_inhibitors & TDI_SUSPENDED) != 0 ? "suspended" : \
605 ((td)->td_inhibitors & TDI_LOCK) != 0 ? "blocked" : \
606 ((td)->td_inhibitors & TDI_IWAIT) != 0 ? "iwait" : "yielding")
610 (td)->td_inhibitors |= (inhib); \
[all …]
/freebsd/sys/kern/
H A Dkern_synch.c566 td, td->td_flags, td->td_inhibitors));
H A Dsched_4bsd.c348 KASSERT((td->td_inhibitors == 0), in maybe_preempt()
1319 KASSERT((td->td_inhibitors == 0), in sched_add()
1416 KASSERT((td->td_inhibitors == 0),
H A Dsched_ule.c2735 KASSERT((td->td_inhibitors == 0), in tdq_add()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_rcu.c301 is_sleeping |= (ts->task_thread->td_inhibitors != 0); in linux_synchronize_rcu_cb()