HomeSort by: relevance | last modified time | path
    Searched refs:p_lflag (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/kern/
tty_tty.c 52 #define cttyvp(p) ((p)->p_lflag & PL_CONTROLT ? (p)->p_session->s_ttyvp : NULL)
126 l->l_proc->p_lflag &= ~PL_CONTROLT;
kern_fork.c 436 p2->p_lflag = PL_PPWAIT;
440 p2->p_lflag = 0;
525 if (p1->p_session->s_ttyvp != NULL && p1->p_lflag & PL_CONTROLT)
526 p2->p_lflag |= PL_CONTROLT;
660 ISSET(p->p_lflag, PL_PPWAIT) ? PTRACE_VFORK : PTRACE_FORK);
kern_proc.c 1386 p->p_lflag &= ~PL_CONTROLT;
1583 p->p_lflag &= ~PL_ORPHANPG;
1601 child->p_lflag &= ~PL_ORPHANPG;
1628 p->p_lflag |= PL_ORPHANPG;
2183 if ((p->p_lflag & PL_CONTROLT) == 0 ||
2188 } else if ((p->p_lflag & PL_CONTROLT) == 0 ||
2642 p->p_lflag = psrc->p_lflag;
2744 if ((p->p_lflag & PL_CONTROLT) &&
2795 ki->p_flag |= sysctl_map_flags(sysctl_lflagmap, p->p_lflag);
    [all...]
sys_sig.c 429 } else if ((p->p_lflag & PL_SIGCOMPAT) == 0) {
447 p->p_lflag |= PL_SIGCOMPAT;
kern_acct.c 475 if ((p->p_lflag & PL_CONTROLT) && p->p_pgrp->pg_session->s_ttyp)
subr_prf.c 555 if (p->p_lflag & PL_CONTROLT && p->p_session->s_ttyvp) {
571 if (p->p_lflag & PL_CONTROLT && p->p_session->s_ttyvp) {
602 if (p->p_lflag & PL_CONTROLT && p->p_session->s_ttyvp) {
kern_sig.c 873 if (checkctty == 0 || p->p_lflag & PL_CONTROLT)
929 !(p->p_pptr == p->p_opptr && ISSET(p->p_lflag, PL_PPWAIT)) &&
1872 if ((p->p_lflag & PL_PPWAIT) != 0)
1880 if ((p->p_lflag & PL_PPWAIT) != 0)
1939 !(ISSET(p->p_lflag, PL_PPWAIT) &&
1992 * XXX Don't hold proc_lock for p_lflag,
1996 !(ISSET(p->p_lflag, PL_PPWAIT) &&
1998 ((p->p_lflag & PL_ORPHANPG) != 0 &&
kern_exit.c 363 if (p->p_lflag & PL_PPWAIT) {
367 p->p_lflag &= ~PL_PPWAIT;
kern_exec.c 1305 if ((p->p_lflag & PL_PPWAIT) != 0) {
1315 p->p_lflag &= ~PL_PPWAIT;
2697 p2->p_lflag = 0;
2789 if (p1->p_session->s_ttyvp != NULL && p1->p_lflag & PL_CONTROLT)
2790 p2->p_lflag |= PL_CONTROLT;
tty.c 1070 p->p_pgrp->pg_jobc && (p->p_lflag & PL_PPWAIT) == 0 &&
1405 p->p_lflag |= PL_CONTROLT;
1997 p->p_lflag & PL_PPWAIT || p->p_pgrp->pg_jobc == 0) {
2260 ISSET(tp->t_lflag, TOSTOP) && (p->p_lflag & PL_PPWAIT) == 0 &&
kern_lwp.c 1939 if (p->p_lflag & PL_PPWAIT)
2070 if (p->p_lflag & PL_PPWAIT) {
tty_pty.c 444 p->p_lflag & PL_PPWAIT) {
  /src/sys/compat/common/
kern_sig_16.c 198 if ((p->p_lflag & PL_SIGCOMPAT) != 0) {
  /src/sys/compat/netbsd32/
netbsd32_compat_16.c 123 if ((p->p_lflag & PL_SIGCOMPAT) != 0) {
netbsd32_signal.c 195 if ((p->p_lflag & PL_SIGCOMPAT) == 0) {
205 p->p_lflag |= PL_SIGCOMPAT;
  /src/sys/compat/ultrix/
ultrix_pathname.c 175 if (!ret && !noctty && SESS_LEADER(p) && !(p->p_lflag & PL_CONTROLT)) {
  /src/sys/sys/
tty.h 242 ((p)->p_session == (tp)->t_session && (p)->p_lflag & PL_CONTROLT)
proc.h 258 char p_lflag; /* l: PL_* flags */ member in struct:proc
429 * Kept in p_lflag and protected by the proc_lock. Access
  /src/sys/miscfs/procfs/
procfs_status.c 147 if ((p->p_lflag & PL_CONTROLT) && (tp = sess->s_ttyp))
  /src/sys/rump/librump/rumpkern/
lwproc.c 224 p->p_flag = p->p_sflag = p->p_slflag = p->p_lflag = p->p_stflag = 0;
  /src/sys/miscfs/fdesc/
fdesc_vnops.c 69 #define cttyvp(p) ((p)->p_lflag & PL_CONTROLT ? (p)->p_session->s_ttyvp : NULL)
  /src/lib/libkvm/
kvm_proc.c 366 if ((proc.p_lflag & PL_CONTROLT) && sess.s_ttyp != NULL) {
416 if ((proc.p_lflag & PL_CONTROLT) == 0 ||
  /src/sys/compat/sunos/
sunos_misc.c 711 if (!ret && !noctty && SESS_LEADER(p) && !(p->p_lflag & PL_CONTROLT)) {
  /src/sys/compat/sunos32/
sunos32_misc.c 942 if (!ret && !noctty && SESS_LEADER(p) && !(p->p_lflag & PL_CONTROLT)) {
  /src/sys/compat/linux/common/
linux_file.c 205 if (!(flags & O_NOCTTY) && SESS_LEADER(p) && !(p->p_lflag & PL_CONTROLT)) {

Completed in 34 milliseconds

1 2