Home
last modified time | relevance | path

Searched refs:p_rcall (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.41.6/bsd/kern/ !
H A Dkern_time.c436 if (!thread_call_enter_delayed_with_leeway(p->p_rcall, NULL, in setitimer()
443 if (thread_call_cancel(p->p_rcall)) { in setitimer()
511 if (!thread_call_enter_delayed_with_leeway(new_proc->p_rcall, NULL, in proc_inherit_itimers()
611 assert(p->p_rcall != NULL); in realitexpire()
613 if (!thread_call_enter_delayed_with_leeway(p->p_rcall, NULL, tvtoabstime(&p->p_rtime), 0, in realitexpire()
635 assert(p->p_rcall != NULL); in proc_free_realitimer()
640 if (thread_call_cancel(p->p_rcall)) { in proc_free_realitimer()
653 thread_call_t call = p->p_rcall; in proc_free_realitimer()
654 p->p_rcall = NULL; in proc_free_realitimer()
H A Dkern_fork.c889 thread_call_free(p->p_rcall); in forkproc_free()
944 child_proc->p_rcall = thread_call_allocate((thread_call_func_t)realitexpire, child_proc); in forkproc()
/xnu-12377.41.6/bsd/sys/ !
H A Dproc_internal.h435 void * p_rcall; member