]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/termios.3
s/nonzero/non-zero/
[thirdparty/man-pages.git] / man3 / termios.3
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" Copyright (c) 1993 Michael Haardt
4 .\" (michael@moria.de)
5 .\" Fri Apr 2 11:32:09 MET DST 1993
6 .\"
7 .\" This is free documentation; you can redistribute it and/or
8 .\" modify it under the terms of the GNU General Public License as
9 .\" published by the Free Software Foundation; either version 2 of
10 .\" the License, or (at your option) any later version.
11 .\"
12 .\" The GNU General Public License's references to "object code"
13 .\" and "executables" are to be interpreted as the output of any
14 .\" document formatting or typesetting system, including
15 .\" intermediate and printed output.
16 .\"
17 .\" This manual is distributed in the hope that it will be useful,
18 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 .\" GNU General Public License for more details.
21 .\"
22 .\" You should have received a copy of the GNU General Public
23 .\" License along with this manual; if not, write to the Free
24 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
25 .\" USA.
26 .\"
27 .\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
28 .\" Modified 1995-02-25 by Jim Van Zandt <jrv@vanzandt.mv.com>
29 .\" Modified 1995-09-02 by Jim Van Zandt <jrv@vanzandt.mv.com>
30 .\" moved to man3, aeb, 950919
31 .\" Modified 2001-09-22 by Michael Kerrisk <mtk.manpages@gmail.com>
32 .\" Modified 2001-12-17, aeb
33 .\" Modified 2004-10-31, aeb
34 .\" 2006-12-28, mtk:
35 .\" Added .SS headers to give some structure to this page; and a
36 .\" small amount of reordering.
37 .\" Added a section on canonical and non-canonical mode.
38 .\" Enhanced the discussion of "raw" mode for cfmakeraw().
39 .\" Document CMSPAR.
40 .\"
41 .TH TERMIOS 3 2007-11-26 "Linux" "Linux Programmer's Manual"
42 .SH NAME
43 termios, tcgetattr, tcsetattr, tcsendbreak, tcdrain, tcflush, tcflow,
44 cfmakeraw, cfgetospeed, cfgetispeed, cfsetispeed, cfsetospeed, cfsetspeed \-
45 get and set terminal attributes, line control, get and set baud rate
46 .SH SYNOPSIS
47 .nf
48 .B #include <termios.h>
49 .br
50 .B #include <unistd.h>
51 .sp
52 .BI "int tcgetattr(int " fd ", struct termios *" termios_p );
53 .sp
54 .BI "int tcsetattr(int " fd ", int " optional_actions ,
55 .BI " const struct termios *" termios_p );
56 .sp
57 .BI "int tcsendbreak(int " fd ", int " duration );
58 .sp
59 .BI "int tcdrain(int " fd );
60 .sp
61 .BI "int tcflush(int " fd ", int " queue_selector );
62 .sp
63 .BI "int tcflow(int " fd ", int " action );
64 .sp
65 .BI "void cfmakeraw(struct termios *" termios_p );
66 .sp
67 .BI "speed_t cfgetispeed(const struct termios *" termios_p );
68 .sp
69 .BI "speed_t cfgetospeed(const struct termios *" termios_p );
70 .sp
71 .BI "int cfsetispeed(struct termios *" termios_p ", speed_t " speed );
72 .sp
73 .BI "int cfsetospeed(struct termios *" termios_p ", speed_t " speed );
74 .sp
75 .BI "int cfsetspeed(struct termios *" termios_p ", speed_t " speed );
76 .fi
77 .sp
78 .in -4n
79 Feature Test Macro Requirements for glibc (see
80 .BR feature_test_macros (7)):
81 .in
82 .sp
83 .BR cfsetspeed (),
84 .BR cfmakeraw ():
85 _BSD_SOURCE
86 .SH DESCRIPTION
87 The termios functions describe a general terminal interface that is
88 provided to control asynchronous communications ports.
89 .SS "The termios structure"
90 .LP
91 Many of the functions described here have a \fItermios_p\fP argument
92 that is a pointer to a \fItermios\fP structure.
93 This structure contains at least the following members:
94 .sp
95 .in +4n
96 .nf
97 tcflag_t c_iflag; /* input modes */
98 tcflag_t c_oflag; /* output modes */
99 tcflag_t c_cflag; /* control modes */
100 tcflag_t c_lflag; /* local modes */
101 cc_t c_cc[NCCS]; /* control chars */
102 .fi
103 .in
104 .PP
105 The values that may be assigned to these fields are described below.
106 In the case of the first four bit-mask fields,
107 the definitions of some of the associated flags that may be set are
108 only exposed if a specific feature test macro (see
109 .BR feature_test_macros (7))
110 is defined, as noted in brackets ("[]").
111 .PP
112 In the descriptions below, "not in POSIX" means that the
113 value is not specified in POSIX.1-2001,
114 and "XSI" means that the value is specified in POSIX.1-2001
115 as part of the XSI extension.
116 .PP
117 \fIc_iflag\fP flag constants:
118 .TP
119 .B IGNBRK
120 Ignore BREAK condition on input.
121 .TP
122 .B BRKINT
123 If \fBIGNBRK\fP is set, a BREAK is ignored.
124 If it is not set
125 but \fBBRKINT\fP is set, then a BREAK causes the input and output
126 queues to be flushed, and if the terminal is the controlling
127 terminal of a foreground process group, it will cause a
128 \fBSIGINT\fP to be sent to this foreground process group.
129 When neither \fBIGNBRK\fP nor \fBBRKINT\fP are set, a BREAK
130 reads as a null byte ('\\0'), except when \fBPARMRK\fP is set,
131 in which case it reads as the sequence \\377 \\0 \\0.
132 .TP
133 .B IGNPAR
134 Ignore framing errors and parity errors.
135 .TP
136 .B PARMRK
137 If \fBIGNPAR\fP is not set, prefix a character with a parity error or
138 framing error with \\377 \\0.
139 If neither \fBIGNPAR\fP nor \fBPARMRK\fP
140 is set, read a character with a parity error or framing error
141 as \\0.
142 .TP
143 .B INPCK
144 Enable input parity checking.
145 .TP
146 .B ISTRIP
147 Strip off eighth bit.
148 .TP
149 .B INLCR
150 Translate NL to CR on input.
151 .TP
152 .B IGNCR
153 Ignore carriage return on input.
154 .TP
155 .B ICRNL
156 Translate carriage return to newline on input (unless \fBIGNCR\fP is set).
157 .TP
158 .B IUCLC
159 (not in POSIX) Map uppercase characters to lowercase on input.
160 .TP
161 .B IXON
162 Enable XON/XOFF flow control on output.
163 .TP
164 .B IXANY
165 (XSI) Typing any character will restart stopped output.
166 (The default is to allow just the START character to restart output.)
167 .TP
168 .B IXOFF
169 Enable XON/XOFF flow control on input.
170 .TP
171 .B IMAXBEL
172 (not in POSIX) Ring bell when input queue is full.
173 Linux does not implement this bit, and acts as if it is always set.
174 .TP
175 .BR IUTF8 " (since Linux 2.6.4)"
176 (not in POSIX) Input is UTF8;
177 this allows character-erase to be correctly performed in cooked mode.
178 .PP
179 \fIc_oflag\fP flag constants defined in POSIX.1:
180 .TP
181 .B OPOST
182 Enable implementation-defined output processing.
183 .PP
184 The remaining \fIc_oflag\fP flag constants are defined in POSIX.1-2001,
185 unless marked otherwise.
186 .TP
187 .B OLCUC
188 (not in POSIX) Map lowercase characters to uppercase on output.
189 .TP
190 .B ONLCR
191 (XSI) Map NL to CR-NL on output.
192 .TP
193 .B OCRNL
194 Map CR to NL on output.
195 .TP
196 .B ONOCR
197 Don't output CR at column 0.
198 .TP
199 .B ONLRET
200 Don't output CR.
201 .TP
202 .B OFILL
203 Send fill characters for a delay, rather than using a timed delay.
204 .TP
205 .B OFDEL
206 (not in POSIX) Fill character is ASCII DEL (0177).
207 If unset, fill character is ASCII NUL ('\\0').
208 (Not implemented on Linux.)
209 .TP
210 .B NLDLY
211 Newline delay mask.
212 Values are \fBNL0\fP and \fBNL1\fP.
213 [requires
214 .B _BSD_SOURCE
215 or
216 .B _SVID_SOURCE
217 or
218 .BR _XOPEN_SOURCE ]
219 .TP
220 .B CRDLY
221 Carriage return delay mask.
222 Values are \fBCR0\fP, \fBCR1\fP, \fBCR2\fP, or \fBCR3\fP.
223 [requires
224 .B _BSD_SOURCE
225 or
226 .B _SVID_SOURCE
227 or
228 .BR _XOPEN_SOURCE ]
229 .TP
230 .B TABDLY
231 Horizontal tab delay mask.
232 Values are \fBTAB0\fP, \fBTAB1\fP, \fBTAB2\fP, \fBTAB3\fP (or \fBXTABS\fP).
233 A value of TAB3, that is, XTABS, expands tabs to spaces
234 (with tab stops every eight columns).
235 [requires
236 .B _BSD_SOURCE
237 or
238 .B _SVID_SOURCE
239 or
240 .BR _XOPEN_SOURCE ]
241 .TP
242 .B BSDLY
243 Backspace delay mask.
244 Values are \fBBS0\fP or \fBBS1\fP.
245 (Has never been implemented.)
246 [requires
247 .B _BSD_SOURCE
248 or
249 .B _SVID_SOURCE
250 or
251 .BR _XOPEN_SOURCE ]
252 .TP
253 .B VTDLY
254 Vertical tab delay mask.
255 Values are \fBVT0\fP or \fBVT1\fP.
256 .TP
257 .B FFDLY
258 Form feed delay mask.
259 Values are \fBFF0\fP or \fBFF1\fP.
260 [requires
261 .B _BSD_SOURCE
262 or
263 .B _SVID_SOURCE
264 or
265 .BR _XOPEN_SOURCE ]
266 .PP
267 \fIc_cflag\fP flag constants:
268 .TP
269 .B CBAUD
270 (not in POSIX) Baud speed mask (4+1 bits).
271 [requires
272 .B _BSD_SOURCE
273 or
274 .BR _SVID_SOURCE ]
275 .TP
276 .B CBAUDEX
277 (not in POSIX) Extra baud speed mask (1 bit), included in
278 .BR CBAUD .
279 [requires
280 .B _BSD_SOURCE
281 or
282 .BR _SVID_SOURCE ]
283 .sp
284 (POSIX says that the baud speed is stored in the
285 .I termios
286 structure without specifying where precisely, and provides
287 .BR cfgetispeed ()
288 and
289 .BR cfsetispeed ()
290 for getting at it.
291 Some systems use bits selected by
292 .B CBAUD
293 in
294 .IR c_cflag ,
295 other systems use separate fields, for example,
296 .I sg_ispeed
297 and
298 .IR sg_ospeed .)
299 .TP
300 .B CSIZE
301 Character size mask.
302 Values are \fBCS5\fP, \fBCS6\fP, \fBCS7\fP, or \fBCS8\fP.
303 .TP
304 .B CSTOPB
305 Set two stop bits, rather than one.
306 .TP
307 .B CREAD
308 Enable receiver.
309 .TP
310 .B PARENB
311 Enable parity generation on output and parity checking for input.
312 .TP
313 .B PARODD
314 If set, then parity for input and output is odd;
315 otherwise even parity is used.
316 .TP
317 .B HUPCL
318 Lower modem control lines after last process closes the device (hang up).
319 .TP
320 .B CLOCAL
321 Ignore modem control lines.
322 .TP
323 .B LOBLK
324 (not in POSIX) Block output from a non-current shell layer.
325 For use by \fBshl\fP (shell layers). (Not implemented on Linux.)
326 .TP
327 .B CIBAUD
328 (not in POSIX) Mask for input speeds.
329 The values for the
330 .B CIBAUD
331 bits are
332 the same as the values for the
333 .B CBAUD
334 bits, shifted left
335 .B IBSHIFT
336 bits.
337 [requires
338 .B _BSD_SOURCE
339 or
340 .BR _SVID_SOURCE ]
341 (Not implemented on Linux.)
342 .TP
343 .B CMSPAR
344 (not in POSIX)
345 Use "stick" (mark/space) parity (supported on certain serial
346 devices): if
347 .B PARODD
348 is set, the parity bit is always 1; if
349 .B PARODD
350 is not set, then the parity bit is always 0).
351 [requires
352 .B _BSD_SOURCE
353 or
354 .BR _SVID_SOURCE ]
355 .TP
356 .B CRTSCTS
357 (not in POSIX) Enable RTS/CTS (hardware) flow control.
358 [requires
359 .B _BSD_SOURCE
360 or
361 .BR _SVID_SOURCE ]
362 .PP
363 \fIc_lflag\fP flag constants:
364 .TP
365 .B ISIG
366 When any of the characters INTR, QUIT, SUSP, or DSUSP are received,
367 generate the corresponding signal.
368 .TP
369 .B ICANON
370 Enable canonical mode (described below).
371 .TP
372 .B XCASE
373 (not in POSIX; not supported under Linux)
374 If \fBICANON\fP is also set, terminal is uppercase only.
375 Input is converted to lowercase, except for characters preceded by \\.
376 On output, uppercase characters are preceded by \\ and lowercase
377 characters are converted to uppercase.
378 [requires _BSD_SOURCE or _SVID_SOURCE or _XOPEN_SOURCE]
379 .\" glibc is probably now wrong to allow
380 .\" Define
381 .\" .B _XOPEN_SOURCE
382 .\" to expose
383 .\" .BR XCASE .
384 .TP
385 .B ECHO
386 Echo input characters.
387 .TP
388 .B ECHOE
389 If \fBICANON\fP is also set, the ERASE character erases the preceding
390 input character, and WERASE erases the preceding word.
391 .TP
392 .B ECHOK
393 If \fBICANON\fP is also set, the KILL character erases the current line.
394 .TP
395 .B ECHONL
396 If \fBICANON\fP is also set, echo the NL character even if ECHO is not set.
397 .TP
398 .B ECHOCTL
399 (not in POSIX) If \fBECHO\fP is also set, ASCII control signals other than
400 TAB, NL, START, and STOP are echoed as ^X, where X is the character with
401 ASCII code 0x40 greater than the control signal.
402 For example, character
403 0x08 (BS) is echoed as ^H.
404 [requires
405 .B _BSD_SOURCE
406 or
407 .BR _SVID_SOURCE ]
408 .TP
409 .B ECHOPRT
410 (not in POSIX) If \fBICANON\fP and \fBIECHO\fP are also set, characters
411 are printed as they are being erased.
412 [requires
413 .B _BSD_SOURCE
414 or
415 .BR _SVID_SOURCE ]
416 .TP
417 .B ECHOKE
418 (not in POSIX) If \fBICANON\fP is also set, KILL is echoed by erasing
419 each character on the line, as specified by \fBECHOE\fP and \fBECHOPRT\fP.
420 [requires
421 .B _BSD_SOURCE
422 or
423 .BR _SVID_SOURCE ]
424 .TP
425 .B DEFECHO
426 (not in POSIX) Echo only when a process is reading.
427 (Not implemented on Linux.)
428 .TP
429 .B FLUSHO
430 (not in POSIX; not supported under Linux)
431 Output is being flushed.
432 This flag is toggled by typing
433 the DISCARD character.
434 [requires
435 .B _BSD_SOURCE
436 or
437 .BR _SVID_SOURCE ]
438 .TP
439 .B NOFLSH
440 Disable flushing the input and output queues when generating the
441 .BR SIGINT ,
442 .BR SIGQUIT ,
443 and
444 .B SIGSUSP
445 signals.
446 .\" Stevens lets SIGSUSP only flush the input queue
447 .TP
448 .B TOSTOP
449 Send the
450 .B SIGTTOU
451 signal to the process group of a background process
452 which tries to write to its controlling terminal.
453 .TP
454 .B PENDIN
455 (not in POSIX; not supported under Linux)
456 All characters in the input queue are reprinted when
457 the next character is read.
458 .RB ( bash (1)
459 handles typeahead this way.)
460 [requires
461 .B _BSD_SOURCE
462 or
463 .BR _SVID_SOURCE ]
464 .TP
465 .B IEXTEN
466 Enable implementation-defined input processing.
467 This flag, as well as \fBICANON\fP must be enabled for the
468 special characters EOL2, LNEXT, REPRINT, WERASE to be interpreted,
469 and for the \fBIUCLC\fP flag to be effective.
470 .PP
471 The \fIc_cc\fP array defines the special control characters.
472 The symbolic indices (initial values) and meaning are:
473 .TP
474 .B VINTR
475 (003, ETX, Ctrl-C, or also 0177, DEL, rubout)
476 Interrupt character.
477 Send a
478 .B SIGINT
479 signal.
480 Recognized when
481 .B ISIG
482 is set, and then not passed as input.
483 .TP
484 .B VQUIT
485 (034, FS, Ctrl-\e)
486 Quit character.
487 Send
488 .B SIGQUIT
489 signal.
490 Recognized when
491 .B ISIG
492 is set, and then not passed as input.
493 .TP
494 .B VERASE
495 (0177, DEL, rubout, or 010, BS, Ctrl-H, or also #)
496 Erase character.
497 This erases the previous not-yet-erased character,
498 but does not erase past EOF or beginning-of-line.
499 Recognized when
500 .B ICANON
501 is set, and then not passed as input.
502 .TP
503 .B VKILL
504 (025, NAK, Ctrl-U, or Ctrl-X, or also @)
505 Kill character.
506 This erases the input since the last EOF or beginning-of-line.
507 Recognized when
508 .B ICANON
509 is set, and then not passed as input.
510 .TP
511 .B VEOF
512 (004, EOT, Ctrl-D)
513 End-of-file character.
514 More precisely: this character causes the pending tty buffer to be sent
515 to the waiting user program without waiting for end-of-line.
516 If it is the first character of the line, the
517 .BR read (2)
518 in the user program returns 0, which signifies end-of-file.
519 Recognized when
520 .B ICANON
521 is set, and then not passed as input.
522 .TP
523 .B VMIN
524 Minimum number of characters for non-canonical read.
525 .TP
526 .B VEOL
527 (0, NUL)
528 Additional end-of-line character.
529 Recognized when
530 .B ICANON
531 is set.
532 .TP
533 .B VTIME
534 Timeout in deciseconds for non-canonical read.
535 .TP
536 .B VEOL2
537 (not in POSIX; 0, NUL)
538 Yet another end-of-line character.
539 Recognized when
540 .B ICANON
541 is set.
542 .TP
543 .B VSWTCH
544 (not in POSIX; not supported under Linux; 0, NUL)
545 Switch character.
546 (Used by \fBshl\fP only.)
547 .TP
548 .B VSTART
549 (021, DC1, Ctrl-Q)
550 Start character.
551 Restarts output stopped by the Stop character.
552 Recognized when
553 .B IXON
554 is set, and then not passed as input.
555 .TP
556 .B VSTOP
557 (023, DC3, Ctrl-S)
558 Stop character.
559 Stop output until Start character typed.
560 Recognized when
561 .B IXON
562 is set, and then not passed as input.
563 .TP
564 .B VSUSP
565 (032, SUB, Ctrl-Z)
566 Suspend character.
567 Send
568 .B SIGTSTP
569 signal.
570 Recognized when
571 .B ISIG
572 is set, and then not passed as input.
573 .TP
574 .B VDSUSP
575 (not in POSIX; not supported under Linux; 031, EM, Ctrl-Y)
576 Delayed suspend character:
577 send
578 .B SIGTSTP
579 signal when the character is read by the user program.
580 Recognized when
581 .B IEXTEN
582 and
583 .B ISIG
584 are set, and the system supports
585 job control, and then not passed as input.
586 .TP
587 .B VLNEXT
588 (not in POSIX; 026, SYN, Ctrl-V)
589 Literal next.
590 Quotes the next input character, depriving it of
591 a possible special meaning.
592 Recognized when
593 .B IEXTEN
594 is set, and then not passed as input.
595 .TP
596 .B VWERASE
597 (not in POSIX; 027, ETB, Ctrl-W)
598 Word erase.
599 Recognized when
600 .B ICANON
601 and
602 .B IEXTEN
603 are set, and then not passed as input.
604 .TP
605 .B VREPRINT
606 (not in POSIX; 022, DC2, Ctrl-R)
607 Reprint unread characters.
608 Recognized when
609 .B ICANON
610 and
611 .B IEXTEN
612 are set, and then not passed as input.
613 .TP
614 .B VDISCARD
615 (not in POSIX; not supported under Linux; 017, SI, Ctrl-O)
616 Toggle: start/stop discarding pending output.
617 Recognized when
618 .B IEXTEN
619 is set, and then not passed as input.
620 .TP
621 .B VSTATUS
622 (not in POSIX; not supported under Linux;
623 status request: 024, DC4, Ctrl-T).
624 .LP
625 These symbolic subscript values are all different, except that
626 .BR VTIME ,
627 .B VMIN
628 may have the same value as
629 .BR VEOL ,
630 .BR VEOF ,
631 respectively.
632 In non-canonical mode the special character meaning is replaced
633 by the timeout meaning.
634 For an explanation of
635 .B VMIN
636 and
637 .BR VTIME ,
638 see the description of
639 non-canonical mode below.
640 .SS "Retrieving and changing terminal settings"
641 .PP
642 .BR tcgetattr ()
643 gets the parameters associated with the object referred by \fIfd\fP and
644 stores them in the \fItermios\fP structure referenced by
645 \fItermios_p\fP.
646 This function may be invoked from a background process;
647 however, the terminal attributes may be subsequently changed by a
648 foreground process.
649 .LP
650 .BR tcsetattr ()
651 sets the parameters associated with the terminal (unless support is
652 required from the underlying hardware that is not available) from the
653 \fItermios\fP structure referred to by \fItermios_p\fP.
654 \fIoptional_actions\fP specifies when the changes take effect:
655 .IP \fBTCSANOW\fP
656 the change occurs immediately.
657 .IP \fBTCSADRAIN\fP
658 the change occurs after all output written to
659 .I fd
660 has been transmitted.
661 This function should be used when changing
662 parameters that affect output.
663 .IP \fBTCSAFLUSH\fP
664 the change occurs after all output written to the object referred by
665 .I fd
666 has been transmitted, and all input that has been received but not read
667 will be discarded before the change is made.
668 .SS "Canonical and non-canonical mode"
669 The setting of the
670 .B ICANON
671 canon flag in
672 .I c_lflag
673 determines whether the terminal is operating in canonical mode
674 .RB ( ICANON
675 set) or
676 non-canonical mode
677 .RB ( ICANON
678 unset).
679 By default,
680 .B ICANON
681 set.
682
683 In canonical mode:
684 .IP * 2
685 Input is made available line by line.
686 An input line is available when one of the line delimiters
687 is typed (NL, EOL, EOL2; or EOF at the start of line).
688 Except in the case of EOF, the line delimiter is included
689 in the buffer returned by
690 .BR read (2).
691 .IP * 2
692 Line editing is enabled (ERASE, KILL;
693 and if the
694 .B IEXTEN
695 flag is set: WERASE, REPRINT, LNEXT).
696 A
697 .BR read (2)
698 returns at most one line of input; if the
699 .BR read (2)
700 requested fewer bytes than are available in the current line of input,
701 then only as many bytes as requested are read,
702 and the remaining characters will be available for a future
703 .BR read (2).
704 .PP
705 In non-canonical mode input is available immediately (without
706 the user having to type a line-delimiter character),
707 and line editing is disabled.
708 The settings of MIN
709 .RI ( c_cc[VMIN] )
710 and TIME
711 .RI ( c_cc[VTIME] )
712 determine the circumstances in which a
713 .BR read (2)
714 completes; there are four distinct cases:
715 .IP * 2
716 MIN == 0; TIME == 0:
717 If data is available,
718 .BR read (2)
719 returns immediately, with the lesser of the number of bytes
720 available, or the number of bytes requested.
721 If no data is available,
722 .BR read (2)
723 returns 0.
724 .IP * 2
725 MIN > 0; TIME == 0:
726 .BR read (2)
727 blocks until the lesser of MIN bytes or the number of bytes requested
728 are available, and returns the lesser of these two values.
729 .IP * 2
730 MIN == 0; TIME > 0:
731 TIME specifies the limit for a timer in tenths of a second.
732 The timer is started when
733 .BR read (2)
734 is called.
735 .BR read (2)
736 returns either when at least one byte of data is available,
737 or when the timer expires.
738 If the timer expires without any input becoming available,
739 .BR read (2)
740 returns 0.
741 .IP * 2
742 MIN > 0; TIME > 0:
743 TIME specifies the limit for a timer in tenths of a second.
744 Once an initial byte of input becomes available,
745 the timer is restarted after each further byte is received.
746 .BR read (2)
747 returns either when the lesser of the number of bytes requested or
748 MIN byte have been read,
749 or when the inter-byte timeout expires.
750 Because the timer is only started after the initial byte
751 becomes available, at least one byte will be read.
752 .SS "Raw mode"
753 .LP
754 .BR cfmakeraw ()
755 sets the terminal to something like the
756 "raw" mode of the old Version 7 terminal driver:
757 input is available character by character,
758 echoing is disabled, and all special processing of
759 terminal input and output characters is disabled.
760 The terminal attributes are set as follows:
761 .nf
762
763 termios_p\->c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP
764 | INLCR | IGNCR | ICRNL | IXON);
765 termios_p\->c_oflag &= ~OPOST;
766 termios_p\->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
767 termios_p\->c_cflag &= ~(CSIZE | PARENB);
768 termios_p\->c_cflag |= CS8;
769 .fi
770 .SS "Line control"
771 .LP
772 .BR tcsendbreak ()
773 transmits a continuous stream of zero-valued bits for a specific
774 duration, if the terminal is using asynchronous serial data
775 transmission.
776 If \fIduration\fP is zero, it transmits zero-valued bits
777 for at least 0.25 seconds, and not more that 0.5 seconds.
778 If \fIduration\fP is not zero, it sends zero-valued bits for some
779 implementation-defined length of time.
780 .LP
781 If the terminal is not using asynchronous serial data transmission,
782 .BR tcsendbreak ()
783 returns without taking any action.
784 .LP
785 .BR tcdrain ()
786 waits until all output written to the object referred to by
787 .I fd
788 has been transmitted.
789 .LP
790 .BR tcflush ()
791 discards data written to the object referred to by
792 .I fd
793 but not transmitted, or data received but not read, depending on the
794 value of
795 .IR queue_selector :
796 .IP \fBTCIFLUSH\fP
797 flushes data received but not read.
798 .IP \fBTCOFLUSH\fP
799 flushes data written but not transmitted.
800 .IP \fBTCIOFLUSH\fP
801 flushes both data received but not read, and data written but not
802 transmitted.
803 .LP
804 .BR tcflow ()
805 suspends transmission or reception of data on the object referred to by
806 .IR fd ,
807 depending on the value of
808 .IR action :
809 .IP \fBTCOOFF\fP
810 suspends output.
811 .IP \fBTCOON\fP
812 restarts suspended output.
813 .IP \fBTCIOFF\fP
814 transmits a STOP character, which stops the terminal device from
815 transmitting data to the system.
816 .IP \fBTCION\fP
817 transmits a START character, which starts the terminal device
818 transmitting data to the system.
819 .LP
820 The default on open of a terminal file is that neither its input nor its
821 output is suspended.
822 .SS "Line speed"
823 The baud rate functions are provided for getting and setting the values
824 of the input and output baud rates in the \fItermios\fP structure.
825 The new values do not take effect
826 until
827 .BR tcsetattr ()
828 is successfully called.
829
830 Setting the speed to \fBB0\fP instructs the modem to "hang up".
831 The actual bit rate corresponding to \fBB38400\fP may be altered with
832 .BR setserial (8).
833 .LP
834 The input and output baud rates are stored in the \fItermios\fP
835 structure.
836 .LP
837 .BR cfgetospeed ()
838 returns the output baud rate stored in the \fItermios\fP structure
839 pointed to by
840 .IR termios_p .
841 .LP
842 .BR cfsetospeed ()
843 sets the output baud rate stored in the \fItermios\fP structure pointed
844 to by \fItermios_p\fP to \fIspeed\fP, which must be one of these constants:
845 .nf
846
847 .ft B
848 B0
849 B50
850 B75
851 B110
852 B134
853 B150
854 B200
855 B300
856 B600
857 B1200
858 B1800
859 B2400
860 B4800
861 B9600
862 B19200
863 B38400
864 B57600
865 B115200
866 B230400
867 .ft P
868
869 .fi
870 The zero baud rate, \fBB0\fP,
871 is used to terminate the connection.
872 If B0 is specified, the modem control lines shall no longer be asserted.
873 Normally, this will disconnect the line.
874 \fBCBAUDEX\fP is a mask
875 for the speeds beyond those defined in POSIX.1 (57600 and above).
876 Thus, \fBB57600\fP & \fBCBAUDEX\fP is non-zero.
877 .LP
878 .BR cfgetispeed ()
879 returns the input baud rate stored in the \fItermios\fP structure.
880 .LP
881 .BR cfsetispeed ()
882 sets the input baud rate stored in the \fItermios\fP structure to
883 .IR speed ,
884 which must be specified as one of the \fBBnnn\fP constants listed above for
885 .BR cfsetospeed ().
886 If the input baud rate is set to zero, the input baud rate will be
887 equal to the output baud rate.
888 .LP
889 .BR cfsetspeed ()
890 is a 4.4BSD extension.
891 It takes the same arguments as
892 .BR cfsetispeed (),
893 and sets both input and output speed.
894 .SH "RETURN VALUE"
895 .LP
896 .BR cfgetispeed ()
897 returns the input baud rate stored in the
898 \fItermios\fP
899 structure.
900 .LP
901 .BR cfgetospeed ()
902 returns the output baud rate stored in the \fItermios\fP structure.
903 .LP
904 All other functions return:
905 .IP 0
906 on success.
907 .IP \-1
908 on failure and set
909 .I errno
910 to indicate the error.
911 .LP
912 Note that
913 .BR tcsetattr ()
914 returns success if \fIany\fP of the requested changes could be
915 successfully carried out.
916 Therefore, when making multiple changes
917 it may be necessary to follow this call with a further call to
918 .BR tcgetattr ()
919 to check that all changes have been performed successfully.
920 .SH CONFORMING TO
921 .BR tcgetattr (),
922 .BR tcsetattr (),
923 .BR tcsendbreak (),
924 .BR tcdrain (),
925 .BR tcflush (),
926 .BR tcflow (),
927 .BR cfgetispeed (),
928 .BR cfgetospeed (),
929 .BR cfsetispeed (),
930 and
931 .BR cfsetospeed ()
932 are specified in POSIX.1-2001.
933
934 .BR cfmakeraw ()
935 and
936 .BR cfsetspeed ()
937 are non-standard, but available on the BSDs.
938 .SH NOTES
939 Unix V7 and several later systems have a list of baud rates
940 where after the fourteen values B0, ..., B9600 one finds the
941 two constants EXTA, EXTB ("External A" and "External B").
942 Many systems extend the list with much higher baud rates.
943 .LP
944 The effect of a non-zero \fIduration\fP with
945 .BR tcsendbreak ()
946 varies.
947 SunOS specifies a break of
948 .IB duration * N
949 seconds, where \fIN\fP is at least 0.25, and not more than 0.5.
950 Linux, AIX, DU, Tru64 send a break of
951 .I duration
952 milliseconds.
953 FreeBSD and NetBSD and HP-UX and MacOS ignore the value of
954 .IR duration .
955 Under Solaris and Unixware,
956 .BR tcsendbreak ()
957 with non-zero
958 .I duration
959 behaves like
960 .BR tcdrain ().
961 .\" libc4 until 4.7.5, glibc for sysv: EINVAL for duration > 0.
962 .\" libc4.7.6, libc5, glibc for unix: duration in ms.
963 .\" glibc for bsd: duration in us
964 .\" glibc for sunos4: ignore duration
965 .SH "SEE ALSO"
966 .BR stty (1),
967 .BR console_ioctl (4),
968 .BR tty_ioctl (4),
969 .BR setserial (8)