]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libc/gen/ttyname.3
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / libc / gen / ttyname.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 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)ttyname.3   8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD$
30 .\"
31 .Dd May 14, 2005
32 .Dt TTYNAME 3
33 .Os
34 .Sh NAME
35 .Nm ttyname ,
36 .Nm ttyname_r ,
37 .Nm isatty ,
38 .Nm ttyslot
39 .Nd get name of associated terminal (tty) from file descriptor
40 .Sh LIBRARY
41 .Lb libc
42 .Sh SYNOPSIS
43 .In unistd.h
44 .Ft char *
45 .Fn ttyname "int fd"
46 .Ft int
47 .Fn ttyname_r "int fd" "char *buf" "size_t len"
48 .Ft int
49 .Fn isatty "int fd"
50 .Ft int
51 .Fn ttyslot void
52 .Sh DESCRIPTION
53 These functions operate on the system file descriptors for terminal
54 type devices.
55 These descriptors are not related to the standard
56 .Tn I/O
57 .Dv FILE
58 typedef, but refer to the special device files found in
59 .Pa /dev
60 and for which an entry exists
61 in the initialization file
62 .Pa /etc/ttys
63 or pseudo-terminals.
64 (See
65 .Xr ttys 5 . )
66 .Pp
67 The
68 .Fn isatty
69 function
70 determines if the file descriptor
71 .Fa fd
72 refers to a valid
73 terminal type device.
74 .Pp
75 The
76 .Fn ttyname
77 function
78 gets the related device name of
79 a file descriptor for which
80 .Fn isatty
81 is true.
82 .Pp
83 The
84 .Fn ttyname
85 function
86 returns the name stored in a static buffer which will be overwritten
87 on subsequent calls.
88 The
89 .Fn ttyname_r
90 function
91 takes a buffer and length as arguments to avoid this problem.
92 .Pp
93 The
94 .Fn ttyslot
95 function
96 fetches the current process' control terminal number from the
97 .Xr ttys 5
98 file entry.
99 .Sh RETURN VALUES
100 The
101 .Fn ttyname
102 function
103 returns the null terminated name if the device is found and
104 .Fn isatty
105 is true; otherwise
106 a
107 .Dv NULL
108 pointer is returned.
109 The
110 .Fn ttyname_r
111 function returns 0 if successful.
112 Otherwise an error number is returned.
113 .Pp
114 The
115 .Fn ttyslot
116 function
117 returns the unit number of the device file if found; otherwise
118 the value zero is returned.
119 .Sh FILES
120 .Bl -tag -width ".Pa /etc/ttys" -compact
121 .It Pa /dev/\(**
122 .It Pa /etc/ttys
123 .El
124 .Sh ERRORS
125 The
126 .Fn ttyname_r
127 may fail and return the following error codes:
128 .Bl -tag -width Er
129 .It Bq Er ENOTTY
130 The
131 .Fa fd
132 argument
133 is not a valid file descriptor.
134 .It Bq Er ERANGE
135 The
136 .Fa bufsize
137 argument
138 is smaller than the length of the string to be returned.
139 .El
140 .Sh SEE ALSO
141 .Xr ioctl 2 ,
142 .Xr ttys 5
143 .Sh HISTORY
144 The
145 .Fn isatty ,
146 .Fn ttyname ,
147 and
148 .Fn ttyslot
149 functions
150 appeared in
151 .At v7 .
152 The
153 .Fn ttyname_r
154 function
155 appeared in
156 .Fx 6.0 .