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

Function ttydevsw_ioctl

freebsd/sys/ttydevsw.h:133–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133static __inline int
134ttydevsw_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td)
135{
136
137 tty_assert_locked(tp);
138 MPASS(!tty_gone(tp));
139
140 return (tp->t_devsw->tsw_ioctl(tp, cmd, data, td));
141}
142
143static __inline int
144ttydevsw_cioctl(struct tty *tp, int unit, u_long cmd, caddr_t data,

Callers 1

tty_ioctlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected