Home
last modified time | relevance | path

Searched refs:pending_queue (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.61.12/osfmk/kern/
H A Dthread_call.c76 queue_head_t pending_queue; member
336 old_queue != &group->pending_queue && in thread_call_dequeue()
367 old_queue != &group->pending_queue && in thread_call_enqueue_deadline()
468 queue_init(&group->pending_queue); in thread_call_group_setup()
728 bool was_on_queue = thread_call_enqueue_tail(call, &group->pending_queue); in _pending_call_enqueue()
775 if (old_queue == &group->pending_queue) { in _delayed_call_enqueue()
806 if (old_queue == &group->pending_queue) { in _call_dequeue()
983 result = _cancel_func_from_queue(func, param, group, cancel_all, &group->pending_queue) | in thread_call_func_cancel()
988 result = _cancel_func_from_queue(func, param, group, cancel_all, &group->pending_queue) || in thread_call_func_cancel()
1185 if (call->tc_queue != &group->pending_queue) { in thread_call_enter1()
[all …]
/xnu-12377.61.12/tools/lldbmacros/
H A Dscheduler.py1159 print("\t" +"Pending Queue: ({:>#18x})\n".format(addressof(group.pending_queue)))
1160 if not LinkageChainEmpty(group.pending_queue) :
1162 for call in ParanoidIterateLinkageChain(group.pending_queue, "thread_call_t", "tc_qlink"):