]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/lib/libc/sys/close.2
Clone Kip's Xen on stable/6 tree so that I can work on improving FreeBSD/amd64
[FreeBSD/FreeBSD.git] / 6 / lib / libc / 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$
34 .\"
35 .Dd December 4, 2006
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 system 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 system 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.
87 Most
88 of the descriptors can be rearranged with
89 .Xr dup2 2
90 or deleted with
91 .Fn close
92 before the
93 .Xr execve 2
94 is attempted, but if some of these descriptors will still
95 be needed if the execve fails, it is necessary to arrange for them
96 to be closed if the execve succeeds.
97 For this reason, the call
98 .Dq Li fcntl(d, F_SETFD, FD_CLOEXEC)
99 is provided,
100 which arranges that a descriptor will be closed after a successful
101 execve; the call
102 .Dq Li fcntl(d, F_SETFD, 0)
103 restores the default,
104 which is to not close the descriptor.
105 .Sh RETURN VALUES
106 .Rv -std close
107 .Sh ERRORS
108 The
109 .Fn close
110 system call will fail if:
111 .Bl -tag -width Er
112 .It Bq Er EBADF
113 The
114 .Fa d
115 argument
116 is not an active descriptor.
117 .It Bq Er EINTR
118 An interrupt was received.
119 .It Bq Er ENOSPC
120 The underlying object did not fit, cached data was lost.
121 .It Bq Er ECONNRESET
122 The underlying object was a stream socket that was shutdown by the peer
123 before all pending data was delivered.
124 .El
125 .Sh SEE ALSO
126 .Xr accept 2 ,
127 .Xr execve 2 ,
128 .Xr fcntl 2 ,
129 .Xr flock 2 ,
130 .Xr open 2 ,
131 .Xr pipe 2 ,
132 .Xr socket 2 ,
133 .Xr socketpair 2
134 .Sh STANDARDS
135 The
136 .Fn close
137 system call is expected to conform to
138 .St -p1003.1-90 .
139 .Sh HISTORY
140 The
141 .Fn close
142 function appeared in
143 .At v7 .