Home
last modified time | relevance | path

Searched refs:P_CONTROLT (Results 1 – 10 of 10) sorted by relevance

/f-stack/freebsd/kern/
H A Dtty_tty.c75 if (!(p->p_flag & P_CONTROLT)) in ctty_clone()
H A Dkern_acct.c386 if ((p->p_flag & P_CONTROLT) && p->p_pgrp->pg_session->s_ttyp) in acct_process()
H A Dkern_fork.c588 if (p1->p_session->s_ttyvp != NULL && p1->p_flag & P_CONTROLT) in do_fork()
589 p2->p_flag |= P_CONTROLT; in do_fork()
H A Dsubr_prf.c193 if ((p->p_flag & P_CONTROLT) == 0) { in uprintf()
244 if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) { in vtprintf()
H A Dtty.c420 return (p->p_session == tp->t_session && p->p_flag & P_CONTROLT); in tty_is_ctty()
1264 p->p_flag &= ~P_CONTROLT; in tty_drop_ctty()
1853 p->p_flag |= P_CONTROLT; in tty_generic_ioctl()
H A Dkern_proc.c590 p->p_flag &= ~P_CONTROLT; in enterpgrp()
1197 if ((p->p_flag & P_CONTROLT) && tp != NULL) { in fill_kinfo_proc_pgrp()
1653 if ((p->p_flag & P_CONTROLT) == 0 || in sysctl_kern_proc_iterate()
H A Dkern_sig.c1973 (checkctty == 0 || p->p_flag & P_CONTROLT)) in pgsignal()
3933 (checkctty == 0 || (p->p_flag & P_CONTROLT))) in pgsigio()
/f-stack/freebsd/ddb/
H A Ddb_ps.c232 if (p->p_flag & P_CONTROLT) in db_ps_proc()
/f-stack/lib/
H A Dff_glue.c1000 (checkctty == 0 || (p->p_flag & P_CONTROLT)))
/f-stack/freebsd/sys/
H A Dproc.h746 #define P_CONTROLT 0x00000002 /* Has a controlling terminal. */ macro