Initial import from FreeBSD RELENG_4:
[games.git] / lib / libcr / sys / close.2
1 .\" Copyright (c) 1980, 1991, 1993, 1994
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 .\"     @(#)close.2     8.2 (Berkeley) 4/19/94
33 .\" $FreeBSD: src/lib/libc/sys/close.2,v 1.10.2.6 2001/12/14 18:34:00 ru Exp $
34 .\"
35 .Dd April 19, 1994
36 .Dt CLOSE 2
37 .Os
38 .Sh NAME
39 .Nm close
40 .Nd delete a descriptor
41 .Sh LIBRARY
42 .Lb libc
43 .Sh SYNOPSIS
44 .In unistd.h
45 .Ft int
46 .Fn close "int d"
47 .Sh DESCRIPTION
48 The
49 .Fn close
50 call deletes a descriptor from the per-process object
51 reference table.
52 If this is the last reference to the underlying object, the
53 object will be deactivated.
54 For example, on the last close of a file
55 the current
56 .Em seek
57 pointer associated with the file is lost;
58 on the last close of a
59 .Xr socket 2
60 associated naming information and queued data are discarded;
61 on the last close of a file holding an advisory lock
62 the lock is released (see further
63 .Xr flock 2 ) .
64 However, the semantics of System V and
65 .St -p1003.1-88
66 dictate that all
67 .Xr fcntl 2
68 advisory record locks associated with a file for a given process
69 are removed when
70 .Em any
71 file descriptor for that file is closed by that process.
72 .Pp
73 When a process exits,
74 all associated file descriptors are freed, but since there is
75 a limit on active descriptors per processes, the
76 .Fn close
77 function call
78 is useful when a large quantity of file descriptors are being handled.
79 .Pp
80 When a process forks (see
81 .Xr fork 2 ) ,
82 all descriptors for the new child process reference the same
83 objects as they did in the parent before the fork.
84 If a new process is then to be run using
85 .Xr execve 2 ,
86 the process would normally inherit these descriptors.  Most
87 of the descriptors can be rearranged with
88 .Xr dup2 2
89 or deleted with
90 .Fn close
91 before the
92 .Xr execve 2
93 is attempted, but if some of these descriptors will still
94 be needed if the execve fails, it is necessary to arrange for them
95 to be closed if the execve succeeds.
96 For this reason, the call
97 .Dq Li fcntl(d, F_SETFD, 1)
98 is provided,
99 which arranges that a descriptor will be closed after a successful
100 execve; the call
101 .Dq Li fcntl(d, F_SETFD, 0)
102 restores the default,
103 which is to not close the descriptor.
104 .Sh RETURN VALUES
105 .Rv -std close
106 .Sh ERRORS
107 .Fn Close
108 will fail if:
109 .Bl -tag -width Er
110 .It Bq Er EBADF
111 .Fa D
112 is not an active descriptor.
113 .It Bq Er EINTR
114 An interrupt was received.
115 .El
116 .Sh SEE ALSO
117 .Xr accept 2 ,
118 .Xr execve 2 ,
119 .Xr fcntl 2 ,
120 .Xr flock 2 ,
121 .Xr open 2 ,
122 .Xr pipe 2 ,
123 .Xr socket 2 ,
124 .Xr socketpair 2
125 .Sh STANDARDS
126 The
127 .Fn close
128 function call is expected to conform to
129 .St -p1003.1-90 .
130 .Sh HISTORY
131 A
132 .Fn close
133 function call appeared in
134 .At v7 .