Home
last modified time | relevance | path

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

/xnu-12377.81.4/osfmk/kern/
H A Dast.c457 ast_t *pending_ast = ast_pending(); in ast_on() local
459 *pending_ast |= reasons; in ast_on()
469 ast_t *pending_ast = ast_pending(); in ast_off() local
471 *pending_ast &= ~reasons; in ast_off()
482 ast_t *pending_ast = ast_pending(); in ast_consume() local
484 reasons &= *pending_ast; in ast_consume()
485 *pending_ast &= ~reasons; in ast_consume()
498 ast_t *pending_ast = ast_pending(); in ast_peek() local
500 reasons &= *pending_ast; in ast_peek()
512 ast_t *pending_ast = ast_pending(); in ast_context() local
[all …]
H A Dsyscall_subr.c645 ast_t *pending_ast = ast_pending(); in thread_yield_to_preemption() local
649 if (*pending_ast & AST_PREEMPT) { in thread_yield_to_preemption()