Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/kern/
H A Dkern_exit.c2427 while ((q->p_listflag & P_LIST_WAITING) == P_LIST_WAITING) { in proc_exit()
2430 q->p_listflag |= P_LIST_WAITING; in proc_exit()
2690 while ((p->p_listflag & P_LIST_WAITING) == P_LIST_WAITING) { in proc_exit()
2695 p->p_listflag |= P_LIST_WAITING; in proc_exit()
2798 child->p_listflag &= ~P_LIST_WAITING; in reap_child_locked()
2869 child->p_listflag &= ~P_LIST_WAITING; in reap_child_locked()
2977 if (p->p_listflag & P_LIST_WAITING) { in wait4_nocancel()
2988 p->p_listflag |= P_LIST_WAITING; /* only allow single thread to wait() */ in wait4_nocancel()
3109 p->p_listflag &= ~P_LIST_WAITING; in wait4_nocancel()
3138 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.41.6/bsd/sys/
H A Dproc_internal.h510 #define P_LIST_WAITING 0x00000010 macro