Searched refs:td_inhibitors (Results 1 – 6 of 6) sorted by relevance
56 (((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");
264 int td_inhibitors; /* (t) Why can not run. */ member582 #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 …]
566 td, td->td_flags, td->td_inhibitors));
348 KASSERT((td->td_inhibitors == 0), in maybe_preempt() 1319 KASSERT((td->td_inhibitors == 0), in sched_add() 1416 KASSERT((td->td_inhibitors == 0),
2735 KASSERT((td->td_inhibitors == 0), in tdq_add()
301 is_sleeping |= (ts->task_thread->td_inhibitors != 0); in linux_synchronize_rcu_cb()