Home
last modified time | relevance | path

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

/xnu-10063.141.1/osfmk/kern/
H A Dast.c392 ast_t *pending_ast = ast_pending(); in ast_on() local
394 *pending_ast |= reasons; in ast_on()
404 ast_t *pending_ast = ast_pending(); in ast_off() local
406 *pending_ast &= ~reasons; in ast_off()
417 ast_t *pending_ast = ast_pending(); in ast_consume() local
419 reasons &= *pending_ast; in ast_consume()
420 *pending_ast &= ~reasons; in ast_consume()
433 ast_t *pending_ast = ast_pending(); in ast_peek() local
435 reasons &= *pending_ast; in ast_peek()
447 ast_t *pending_ast = ast_pending(); in ast_context() local
[all …]
H A Dsyscall_subr.c635 ast_t *pending_ast = ast_pending(); in thread_yield_to_preemption() local
639 if (*pending_ast & AST_PREEMPT) { in thread_yield_to_preemption()