Home
last modified time | relevance | path

Searched refs:t_pgrp (Results 1 – 5 of 5) sorted by relevance

/xnu-8019.80.24/bsd/kern/
H A Dtty.c365 oldpg = tp->t_pgrp; in ttyclose()
372 tp->t_pgrp = NULL; in ttyclose()
1160 *(int *)data = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID; in ttioctl_locked()
1395 oldpg = tp->t_pgrp; in ttioctl_locked()
1397 tp->t_pgrp = pg; /* donate pg ref */ in ttioctl_locked()
1449 oldpg = tp->t_pgrp; in ttioctl_locked()
1450 tp->t_pgrp = pgrp; in ttioctl_locked()
2907 if (tp->t_pgrp == NULL) { in ttyinfo_locked()
2914 if ((p = tp->t_pgrp->pg_members.lh_first) == NULL) { in ttyinfo_locked()
3231 if (tp->t_pgrp == NULL || tp->t_pgrp == hazard_ptr_load(&p->p_pgrp)) { in isbackground()
H A Dtty_dev.c987 *(int *)data = tp->t_pgrp ? tp->t_pgrp->pg_id : 0;
H A Dkern_proc.c3807 if (tp->t_pgrp) { in tty_pgrp_locked()
3808 pg = pg_ref(tp->t_pgrp); in tty_pgrp_locked()
/xnu-8019.80.24/bsd/sys/
H A Dtty.h129 struct pgrp *t_pgrp; /* (TTYL+LL) Foreground process group. */ member
/xnu-8019.80.24/tools/lldbmacros/
H A Dprocess.py928 print "Foreground Process Group: 0x{0:0>16x}".format(unsigned(tty.t_pgrp))