extended termios struct for custom baud rate */
| 40 | #endif |
| 41 | /* extended termios struct for custom baud rate */ |
| 42 | struct 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) |
nothing calls this directly
no outgoing calls
no test coverage detected