Home
last modified time | relevance | path

Searched refs:TF_OPENCLOSE (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/kern/
H A Dtty.c235 if (tty_opened(tp) || tp->t_flags & TF_OPENCLOSE) { in ttydev_leave()
241 tp->t_flags |= TF_OPENCLOSE; in ttydev_leave()
265 tp->t_flags &= ~TF_OPENCLOSE; in ttydev_leave()
293 while (tp->t_flags & TF_OPENCLOSE) { in ttydev_open()
300 tp->t_flags |= TF_OPENCLOSE; in ttydev_open()
366 done: tp->t_flags &= ~TF_OPENCLOSE; in ttydev_open()
1146 #define TF_ACTIVITY (TF_GONE|TF_OPENED|TF_HOOK|TF_OPENCLOSE) in tty_rel_free()
2271 { TF_OPENCLOSE, 'B' },
/f-stack/freebsd/sys/
H A Dtty.h78 #define TF_OPENCLOSE 0x00080 /* Device is in open()/close(). */ macro