Home
last modified time | relevance | path

Searched refs:P_WAITED (Results 1 – 7 of 7) sorted by relevance

/NextBSD/sys/kern/
HDkern_exit.c1236 ((p->p_flag & P_WAITED) == 0)) { in kern_wait6()
1239 p->p_flag |= P_WAITED; in kern_wait6()
1265 ((p->p_flag & P_WAITED) == 0)) { in kern_wait6()
1268 p->p_flag |= P_WAITED; in kern_wait6()
HDsys_process.c854 (p->p_flag & P_WAITED) == 0) {
1031 p->p_flag &= ~(P_TRACED | P_WAITED | P_FOLLOWFORK);
1077 p->p_flag &= ~(P_STOPPED_TRACE|P_STOPPED_SIG|P_WAITED);
HDkern_sig.c2847 p->p_flag &= ~P_WAITED; in thread_stopped()
/NextBSD/sys/fs/procfs/
HDprocfs_ctl.c239 p->p_flag &= ~P_WAITED; /* XXX ? */ in procfs_control()
/NextBSD/sys/i386/linux/
HDlinux_ptrace.c387 if (!P_SHOULDSTOP(p) || (p->p_flag & P_WAITED) == 0) { in linux_ptrace()
/NextBSD/sys/compat/svr4/
HDsvr4_misc.c1300 (p->p_flag & P_WAITED) == 0 &&
1304 p->p_flag |= P_WAITED;
/NextBSD/sys/sys/
HDproc.h684 #define P_WAITED 0x01000 /* Someone is waiting for us. */ macro