MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ttydisc_rint_done

Function ttydisc_rint_done

freebsd/kern/tty_ttydisc.c:1135–1148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1133}
1134
1135void
1136ttydisc_rint_done(struct tty *tp)
1137{
1138
1139 tty_assert_locked(tp);
1140
1141 if (ttyhook_hashook(tp, rint_done))
1142 ttyhook_rint_done(tp);
1143
1144 /* Wake up readers. */
1145 tty_wakeup(tp, FREAD);
1146 /* Wake up driver for echo. */
1147 ttydevsw_outwakeup(tp);
1148}
1149
1150size_t
1151ttydisc_rint_poll(struct tty *tp)

Callers 6

ptsdev_writeFunction · 0.85
tty_generic_ioctlFunction · 0.85
terminal_input_charFunction · 0.85
terminal_input_rawFunction · 0.85
terminal_input_specialFunction · 0.85
termteken_respondFunction · 0.85

Calls 3

ttyhook_rint_doneFunction · 0.85
tty_wakeupFunction · 0.85
ttydevsw_outwakeupFunction · 0.85

Tested by

no test coverage detected