Home
last modified time | relevance | path

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

/xnu-8796.121.2/osfmk/kern/
H A Dast.c379 ast_t *pending_ast = ast_pending(); in ast_on() local
381 *pending_ast |= reasons; in ast_on()
391 ast_t *pending_ast = ast_pending(); in ast_off() local
393 *pending_ast &= ~reasons; in ast_off()
404 ast_t *pending_ast = ast_pending(); in ast_consume() local
406 reasons &= *pending_ast; in ast_consume()
407 *pending_ast &= ~reasons; in ast_consume()
420 ast_t *pending_ast = ast_pending(); in ast_peek() local
422 reasons &= *pending_ast; in ast_peek()
434 ast_t *pending_ast = ast_pending(); in ast_context() local
[all …]
H A Dsyscall_subr.c634 ast_t *pending_ast = ast_pending(); in thread_yield_to_preemption() local
638 if (*pending_ast & AST_PREEMPT) { in thread_yield_to_preemption()