MCPcopy Create free account
hub / github.com/distributed/sers / termios3

Class termios3

sers_linux.c:42–51  ·  view source on GitHub ↗

extended termios struct for custom baud rate */

Source from the content-addressed store, hash-verified

40#endif
41/* extended termios struct for custom baud rate */
42struct termios3 {
43 tcflag_t c_iflag; /* input mode flags */
44 tcflag_t c_oflag; /* output mode flags */
45 tcflag_t c_cflag; /* control mode flags */
46 tcflag_t c_lflag; /* local mode flags */
47 cc_t c_line; /* line discipline */
48 cc_t c_cc[NCCS_K]; /* control characters */
49 speed_t c_ispeed; /* input speed */
50 speed_t c_ospeed; /* output speed */
51};
52
53#define TCGETS3 _IOR('T', 0x2A, struct termios3)
54#define TCSETS3 _IOW('T', 0x2B, struct termios3)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected