Home
last modified time | relevance | path

Searched refs:P_LREGISTER (Results 1 – 5 of 5) sorted by relevance

/xnu-12377.41.6/bsd/kern/
H A Dkern_fork.c1166 if ((parent_proc->p_lflag & P_LREGISTER) != 0) { in forkproc()
1167 child_proc->p_lflag |= P_LREGISTER; in forkproc()
H A Dkern_proc.c4642 p->p_lflag |= P_LREGISTER; in proc_setregister()
4650 p->p_lflag &= ~P_LREGISTER; in proc_resetregister()
/xnu-12377.41.6/bsd/pthread/
H A Dpthread_shims.c146 return p->p_lflag & P_LREGISTER; in proc_get_register()
H A Dpthread_workqueue.c2089 if ((p->p_lflag & P_LREGISTER) == 0) { in workq_open()
3717 if ((p->p_lflag & P_LREGISTER) == 0) { in workq_kernreturn()
/xnu-12377.41.6/bsd/sys/
H A Dproc_internal.h541 #define P_LREGISTER 0x00800000 /* thread start fns registered */ macro