2 * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Copyright 2003, Daniel Reinhold, danielre@users.sf.net. All rights reserved.
5 * Distributed under the terms of the MIT License.
13 #include <errno_private.h>
16 /*! get the attributes of the TTY device at fd */
18 tcgetattr(int fd
, struct termios
*termios
)
20 return ioctl(fd
, TCGETA
, termios
);
24 /*! set the attributes for the TTY device at fd */
26 tcsetattr(int fd
, int opt
, const struct termios
*termios
)
32 // set the attributes immediately
36 // wait for ouput to finish before setting the attributes
44 // no other valid options
49 return ioctl(fd
, method
, termios
);
53 /*! wait for all output to be transmitted */
57 /* Some termios implementations have a TIOCDRAIN command
58 * expressly for this purpose (e.g. ioctl(fd, TIOCDRAIN, 0).
59 * However, the BeOS implementation adheres to another
60 * interface which uses a non-zero last parameter to the
61 * TCSBRK ioctl to signify this functionality.
63 return ioctl(fd
, TCSBRK
, 1);
67 /*! suspend or restart transmission */
69 tcflow(int fd
, int action
)
83 return ioctl(fd
, TCXONC
, action
);
87 /*! flush all pending data (input or output) */
89 tcflush(int fd
, int queueSelector
)
91 return ioctl(fd
, TCFLSH
, queueSelector
);
95 /*! send zero bits for the specified duration */
97 tcsendbreak(int fd
, int duration
)
99 // Posix spec says this should take ~ 0.25 to 0.5 seconds.
100 // As the interpretation of the duration is undefined, we'll just ignore it
101 return ioctl(fd
, TCSBRK
, 0);
106 cfgetispeed(const struct termios
*termios
)
108 return termios
->c_cflag
& CBAUD
;
113 cfsetispeed(struct termios
*termios
, speed_t speed
)
115 /* Check for values that the system cannot handle:
116 greater values than B230400 which is
117 the maximum value defined in termios.h
118 Note that errors from hardware device are detected only
119 until the tcsetattr() function is called */
120 if (speed
> B230400
|| (speed
& CBAUD
) != speed
) {
125 termios
->c_cflag
&= ~CBAUD
;
126 termios
->c_cflag
|= speed
;
132 cfgetospeed(const struct termios
*termios
)
134 return termios
->c_cflag
& CBAUD
;
139 cfsetospeed(struct termios
*termios
, speed_t speed
)
141 /* Check for unaccepted speed values (see above) */
142 if (speed
> B230400
|| (speed
& CBAUD
) != speed
) {
147 termios
->c_cflag
&= ~CBAUD
;
148 termios
->c_cflag
|= speed
;
154 cfmakeraw(struct termios
*termios
)
156 termios
->c_iflag
&= ~(IGNBRK
| BRKINT
| PARMRK
| ISTRIP
| INLCR
| IGNCR
158 termios
->c_oflag
&= ~OPOST
;
159 termios
->c_lflag
&= ~(ECHO
| ECHONL
| ICANON
| ISIG
| IEXTEN
);
160 termios
->c_cflag
&= ~(CSIZE
| PARENB
);
161 termios
->c_cflag
|= CS8
;