Remove references to multibyte(3) which is no longer there.
[dragonfly.git] / lib / libc / gen / tcsendbreak.3
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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.
19 .\"
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
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)tcsendbreak.3       8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/gen/tcsendbreak.3,v 1.5.2.3 2001/12/14 18:33:51 ru Exp $
34 .\" $DragonFly: src/lib/libc/gen/tcsendbreak.3,v 1.2 2003/06/17 04:26:42 dillon Exp $
35 .\"
36 .Dd June 4, 1993
37 .Dt TCSENDBREAK 3
38 .Os
39 .Sh NAME
40 .Nm tcsendbreak ,
41 .Nm tcdrain ,
42 .Nm tcflush ,
43 .Nm tcflow
44 .Nd line control functions
45 .Sh LIBRARY
46 .Lb libc
47 .Sh SYNOPSIS
48 .In termios.h
49 .Ft int
50 .Fn tcdrain "int fd"
51 .Ft int
52 .Fn tcflow "int fd" "int action"
53 .Ft int
54 .Fn tcflush "int fd" "int action"
55 .Ft int
56 .Fn tcsendbreak "int fd" "int len"
57 .Sh DESCRIPTION
58 The
59 .Fn tcdrain
60 function waits until all output written to the terminal referenced by
61 .Fa fd
62 has been transmitted to the terminal.
63 .Pp
64 The
65 .Fn tcflow
66 function suspends transmission of data to or the reception of data from
67 the terminal referenced by
68 .Fa fd
69 depending on the value of
70 .Fa action .
71 The value of
72 .Fa action
73 must be one of the following:
74 .Bl -tag -width "TCIOFF"
75 .It Fa TCOOFF
76 Suspend output.
77 .It Fa TCOON
78 Restart suspended output.
79 .It Fa TCIOFF
80 Transmit a STOP character, which is intended to cause the terminal to stop
81 transmitting data to the system.
82 (See the description of IXOFF in the
83 .Ql Input Modes
84 section of
85 .Xr termios 4 ) .
86 .It Fa TCION
87 Transmit a START character, which is intended to cause the terminal to start
88 transmitting data to the system.
89 (See the description of IXOFF in the
90 .Ql Input Modes
91 section of
92 .Xr termios 4 ) .
93 .El
94 .Pp
95 The
96 .Fn tcflush
97 function discards any data written to the terminal referenced by
98 .Fa fd
99 which has not been transmitted to the terminal, or any data received
100 from the terminal but not yet read, depending on the value of
101 .Fa action .
102 The value of
103 .Fa action
104 must be one of the following:
105 .Bl -tag -width "TCIOFLUSH"
106 .It Fa TCIFLUSH
107 Flush data received but not read.
108 .It Fa TCOFLUSH
109 Flush data written but not transmitted.
110 .It Fa TCIOFLUSH
111 Flush both data received but not read and data written but not transmitted.
112 .El
113 .Pp
114 The
115 .Fn tcsendbreak
116 function transmits a continuous stream of zero-valued bits for four-tenths
117 of a second to the terminal referenced by
118 .Fa fd .
119 The
120 .Fa len
121 parameter is ignored in this implementation.
122 .Sh RETURN VALUES
123 Upon successful completion, all of these functions return a value of zero.
124 .Sh ERRORS
125 If any error occurs, a value of -1 is returned and the global variable
126 .Va errno
127 is set to indicate the error, as follows:
128 .Bl -tag -width Er
129 .It Bq Er EBADF
130 The
131 .Fa fd
132 argument is not a valid file descriptor.
133 .It Bq Er EINVAL
134 The
135 .Fa action
136 argument is not a proper value.
137 .It Bq Er ENOTTY
138 The file associated with
139 .Fa fd
140 is not a terminal.
141 .It Bq Er EINTR
142 A signal interrupted the
143 .Fn tcdrain
144 function.
145 .El
146 .Sh SEE ALSO
147 .Xr tcsetattr 3 ,
148 .Xr termios 4
149 .Sh STANDARDS
150 The
151 .Fn tcsendbreak ,
152 .Fn tcdrain ,
153 .Fn tcflush
154 and
155 .Fn tcflow
156 functions are expected to be compliant with the
157 .St -p1003.1-88
158 specification.