Home
last modified time | relevance | path

Searched refs:t_wsel (Results 1 – 4 of 4) sorted by relevance

/xnu-8019.80.24/bsd/kern/
H A Dtty_ptmx.c550 KNOTE_DETACH(&tp->t_wsel.si_note, kn); in ptsd_kqops_detach()
690 KNOTE_ATTACH(&tp->t_wsel.si_note, kn); in ptsd_kqfilter()
719 assert((tp->t_wsel.si_flags & SI_KNPOSTING) == 0); in ptsd_revoke_knotes()
720 KNOTE(&tp->t_wsel.si_note, NOTE_REVOKE); in ptsd_revoke_knotes()
H A Dtty.c389 SLIST_FOREACH(kn, &tp->t_wsel.si_note, kn_selnext) { in ttyclose()
390 KNOTE_DETACH(&tp->t_wsel.si_note, kn); in ttyclose()
392 selthreadclear(&tp->t_wsel); in ttyclose()
1569 selrecord(p, &tp->t_wsel, wql); in ttyselect()
1580 selrecord(p, &tp->t_wsel, wql); in ttyselect()
2795 selwakeup(&tp->t_wsel); in ttwwakeup()
2796 ttwakeup_knote(&tp->t_wsel, 0); in ttwwakeup()
3170 klist_init(&tp->t_wsel.si_note); in ttymalloc()
3210 if (!(SLIST_EMPTY(&tp->t_rsel.si_note) && SLIST_EMPTY(&tp->t_wsel.si_note))) { in ttydeallocate()
3357 return __container_of(wq, struct tty, t_wsel.si_waitq); in tty_from_waitq()
[all …]
H A Dtty_dev.c755 selrecord(p, &tp->t_wsel, wql);
/xnu-8019.80.24/bsd/sys/
H A Dtty.h132 struct selinfo t_wsel; /* Tty write select. */ member