Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/kern/
H A Dkern_exit.c2394 while ((q->p_listflag & P_LIST_WAITING) == P_LIST_WAITING) { in proc_exit()
2397 q->p_listflag |= P_LIST_WAITING; in proc_exit()
2657 while ((p->p_listflag & P_LIST_WAITING) == P_LIST_WAITING) { in proc_exit()
2662 p->p_listflag |= P_LIST_WAITING; in proc_exit()
2765 child->p_listflag &= ~P_LIST_WAITING; in reap_child_locked()
2836 child->p_listflag &= ~P_LIST_WAITING; in reap_child_locked()
2944 if (p->p_listflag & P_LIST_WAITING) { in wait4_nocancel()
2955 p->p_listflag |= P_LIST_WAITING; /* only allow single thread to wait() */ in wait4_nocancel()
3076 p->p_listflag &= ~P_LIST_WAITING; in wait4_nocancel()
3105 p->p_listflag &= ~P_LIST_WAITING; in wait4_nocancel()
[all …]
H A Dkern_proc.c1039 if ((p->p_listflag & P_LIST_WAITING) != 0) { in proc_find_zombref_locked()
1043 p->p_listflag |= P_LIST_WAITING; in proc_find_zombref_locked()
1052 if ((p->p_listflag & P_LIST_WAITING) == P_LIST_WAITING) { in proc_drop_zombref()
1053 p->p_listflag &= ~P_LIST_WAITING; in proc_drop_zombref()
/xnu-12377.1.9/bsd/sys/
H A Dproc_internal.h510 #define P_LIST_WAITING 0x00000010 macro