1 .\" Copyright (c) 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)tcsendbreak.3 8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/gen/tcsendbreak.3,v 1.8 2001/10/01 16:08:51 ru Exp $
43 .Nd line control functions
51 .Fn tcflow "int fd" "int action"
53 .Fn tcflush "int fd" "int action"
55 .Fn tcsendbreak "int fd" "int len"
59 function waits until all output written to the terminal referenced by
61 has been transmitted to the terminal.
65 function suspends transmission of data to or the reception of data from
66 the terminal referenced by
68 depending on the value of
72 must be one of the following:
73 .Bl -tag -width "TCIOFF"
77 Restart suspended output.
79 Transmit a STOP character, which is intended to cause the terminal to stop
80 transmitting data to the system.
81 (See the description of IXOFF in the
86 Transmit a START character, which is intended to cause the terminal to start
87 transmitting data to the system.
88 (See the description of IXOFF in the
96 function discards any data written to the terminal referenced by
98 which has not been transmitted to the terminal, or any data received
99 from the terminal but not yet read, depending on the value of
103 must be one of the following:
104 .Bl -tag -width "TCIOFLUSH"
106 Flush data received but not read.
108 Flush data written but not transmitted.
110 Flush both data received but not read and data written but not transmitted.
115 function transmits a continuous stream of zero-valued bits for four-tenths
116 of a second to the terminal referenced by
120 parameter is ignored in this implementation.
122 Upon successful completion, all of these functions return a value of zero.
124 If any error occurs, a value of -1 is returned and the global variable
126 is set to indicate the error, as follows:
131 argument is not a valid file descriptor.
135 argument is not a proper value.
137 The file associated with
141 A signal interrupted the
155 functions are expected to be compliant with the