Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Dtty_ptmx.c547 KNOTE_DETACH(&tp->t_rsel.si_note, kn); in ptsd_kqops_detach()
687 KNOTE_ATTACH(&tp->t_rsel.si_note, kn); in ptsd_kqfilter()
715 assert((tp->t_rsel.si_flags & SI_KNPOSTING) == 0); in ptsd_revoke_knotes()
716 KNOTE(&tp->t_rsel.si_note, NOTE_REVOKE); in ptsd_revoke_knotes()
H A Dtty.c393 SLIST_FOREACH(kn, &tp->t_rsel.si_note, kn_selnext) { in ttyclose()
394 KNOTE_DETACH(&tp->t_rsel.si_note, kn); in ttyclose()
396 selthreadclear(&tp->t_rsel); in ttyclose()
1560 selrecord(p, &tp->t_rsel, wql); in ttyselect()
1577 selrecord(p, &tp->t_rsel, wql); in ttyselect()
2765 selwakeup(&tp->t_rsel); in ttwakeup()
2766 ttwakeup_knote(&tp->t_rsel, 0); in ttwakeup()
3169 klist_init(&tp->t_rsel.si_note); in ttymalloc()
3210 if (!(SLIST_EMPTY(&tp->t_rsel.si_note) && SLIST_EMPTY(&tp->t_wsel.si_note))) { in ttydeallocate()
3355 return __container_of(wq, struct tty, t_rsel.si_waitq); in tty_from_waitq()
[all …]
H A Dtty_dev.c741 selrecord(p, &tp->t_rsel, wql);
/xnu-8019.80.24/bsd/sys/
H A Dtty.h131 struct selinfo t_rsel; /* Tty read/oob select. */ member