1333 High kernel cpu usage & dtrace hang on idle system
[illumos-gate.git] / usr / src / man / man2 / close.2
blob61dce6f38c4603c3294fd3973aab3b1ee48d16a9
1 '\" te
2 .\" Copyright 1989 AT&T.  Copyright (c) 2005, Sun Microsystems, Inc.  All Rights Reserved. Portions Copyright (c) 1992, X/Open Company Limited.  All Rights Reserved.
3 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
4 .\" http://www.opengroup.org/bookstore/.
5 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
6 .\"  This notice shall appear on any product containing this material.
7 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
8 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
9 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
10 .TH CLOSE 2 "Oct 18, 2005"
11 .SH NAME
12 close \- close a file descriptor
13 .SH SYNOPSIS
14 .LP
15 .nf
16 #include <unistd.h>
18 \fBint\fR \fBclose\fR(\fBint\fR \fIfildes\fR);
19 .fi
21 .SH DESCRIPTION
22 .sp
23 .LP
24 The \fBclose()\fR function deallocates the file descriptor indicated by
25 \fIfildes\fR. To deallocate means to make the file descriptor available for
26 return by subsequent calls to \fBopen\fR(2) or other functions that allocate
27 file descriptors. All outstanding record locks owned by the process on the file
28 associated with the file descriptor will be removed (that is, unlocked).
29 .sp
30 .LP
31 If \fBclose()\fR is interrupted by a signal that is to be caught, it will
32 return \fB\(mi1\fR with \fBerrno\fR set to \fBEINTR\fR and the state of
33 \fIfildes\fR is unspecified. If an I/O error occurred while reading from or
34 writing to the file system during \fBclose()\fR, it returns -1, sets
35 \fBerrno\fR to \fBEIO\fR, and the state of \fIfildes\fR is unspecified.
36 .sp
37 .LP
38 When all file descriptors associated with a pipe or \fBFIFO\fR special file are
39 closed, any data remaining in the pipe or \fBFIFO\fR will be discarded.
40 .sp
41 .LP
42 When all file descriptors associated with an open file description have been
43 closed the open file description will be freed.
44 .sp
45 .LP
46 If the link count of the file is 0, when all file descriptors associated with
47 the file are closed, the space occupied by the file will be freed and the file
48 will no longer be accessible.
49 .sp
50 .LP
51 If a streams-based (see \fBIntro\fR(2)) \fIfildes\fR is closed and the calling
52 process was previously registered to receive a \fBSIGPOLL\fR signal (see
53 \fBsignal\fR(3C)) for events associated with that stream (see \fBI_SETSIG\fR in
54 \fBstreamio\fR(7I)), the calling process will be unregistered for events
55 associated with the stream.  The last \fBclose()\fR for a stream causes the
56 stream associated with \fIfildes\fR to be dismantled. If \fBO_NONBLOCK\fR and
57 \fBO_NDELAY\fR are not set and there have been no signals posted for the
58 stream, and if there is data on the module's write queue, \fBclose()\fR waits
59 up to 15 seconds (for each module and driver) for any output to drain before
60 dismantling the stream. The time delay can be changed via an \fBI_SETCLTIME\fR
61 \fBioctl\fR(2) request (see \fBstreamio\fR(7I)). If the \fBO_NONBLOCK\fR or
62 \fBO_NDELAY\fR flag is set, or if there are any pending signals, \fBclose()\fR
63 does not wait for output to drain, and dismantles the stream immediately.
64 .sp
65 .LP
66 If \fIfildes\fR is associated with one end of a pipe, the last \fBclose()\fR
67 causes a hangup to occur on the other end of the pipe.  In addition, if the
68 other end of the pipe has been named by \fBfattach\fR(3C), then the last
69 \fBclose()\fR forces the named end to be detached by \fBfdetach\fR(3C). If the
70 named end has no open file descriptors associated with it and gets detached,
71 the stream associated with that end is also dismantled.
72 .sp
73 .LP
74 If \fIfildes\fR refers to the master side of a pseudo-terminal, a \fBSIGHUP\fR
75 signal is sent to the session leader, if any, for which the slave side of the
76 pseudo-terminal is the controlling terminal. It is unspecified whether closing
77 the master side of the pseudo-terminal flushes all queued input and output.
78 .sp
79 .LP
80 If \fIfildes\fR refers to the slave side of a streams-based pseudo-terminal, a
81 zero-length message may be sent to the master.
82 .sp
83 .LP
84 When there is an outstanding cancelable asynchronous I/O operation against
85 \fIfildes\fR when \fBclose()\fR is called, that I/O operation is canceled. An
86 I/O operation that is not canceled completes as if the \fBclose()\fR operation
87 had not yet occurred. All operations that are not canceled will complete as if
88 the \fBclose()\fR blocked until the operations completed.
89 .sp
90 .LP
91 If a shared memory object or a memory mapped file remains referenced at the
92 last close (that is, a process has it mapped), then the entire contents of the
93 memory object will persist until the memory object becomes unreferenced. If
94 this is the last close of a shared memory object or a memory mapped file and
95 the close results in the memory object becoming unreferenced, and the memory
96 object has been unlinked, then the memory object will be removed.
97 .sp
98 .LP
99 If \fIfildes\fR refers to a socket, \fBclose()\fR causes the socket to be
100 destroyed.  If the socket is connection-mode, and the \fBSO_LINGER\fR option is
101 set for the socket with non-zero linger time, and the socket has untransmitted
102 data, then \fBclose()\fR will block for up to the current linger interval until
103 all data is transmitted.
104 .SH RETURN VALUES
107 Upon successful completion, \fB0\fR is returned. Otherwise, \fB\(mi1\fR is
108 returned and \fBerrno\fR is set to indicate the error.
109 .SH ERRORS
112 The \fBclose()\fR function will fail if:
114 .ne 2
116 \fB\fBEBADF\fR\fR
118 .RS 11n
119 The \fIfildes\fR argument is not a valid file descriptor.
123 .ne 2
125 \fB\fBEINTR\fR\fR
127 .RS 11n
128 The \fBclose()\fR function was interrupted by a signal.
132 .ne 2
134 \fB\fBENOLINK\fR\fR
136 .RS 11n
137 The \fIfildes\fR argument is on a remote machine and the link to that machine
138 is no longer active.
142 .ne 2
144 \fB\fBENOSPC\fR\fR
146 .RS 11n
147 There was no free space remaining on the device containing the file.
152 The \fBclose()\fR function may fail if:
154 .ne 2
156 \fB\fBEIO\fR\fR
158 .RS 7n
159 An I/O error occurred while reading from or writing to the file system.
162 .SH EXAMPLES
164 \fBExample 1 \fRReassign a file descriptor.
167 The following example closes the file descriptor associated with standard
168 output for the current process, re-assigns standard output to a new file
169 descriptor, and closes the original file descriptor to clean up. This example
170 assumes that the file descriptor 0, which is the descriptor for standard input,
171 is not closed.
174 .in +2
176 #include <unistd.h>
177 \&...
178 int pfd;
179 \&...
180 close(1);
181 dup(pfd);
182 close(pfd);
183 \&...
185 .in -2
189 Incidentally, this is exactly what could be achieved using:
192 .in +2
194 dup2(pfd, 1);
195 close(pfd);
197 .in -2
200 \fBExample 2 \fRClose a file descriptor.
203 In the following example, \fBclose()\fR is used to close a file descriptor
204 after an unsuccessful attempt is made to associate that file descriptor with a
205 stream.
208 .in +2
210 #include <stdio.h>
211 #include <unistd.h>
212 #include <stdlib.h>
214 #define LOCKFILE "/etc/ptmp"
215 \&...
216 int pfd;
217 FILE *fpfd;
218 \&...
219 if ((fpfd = fdopen (pfd, "w")) == NULL) {
220         close(pfd);
221         unlink(LOCKFILE);
222         exit(1);
224 \&...
226 .in -2
228 .SH USAGE
231 An application that used the \fBstdio\fR function \fBfopen\fR(3C) to open a
232 file should use the corresponding \fBfclose\fR(3C) function rather than
233 \fBclose()\fR.
234 .SH ATTRIBUTES
237 See \fBattributes\fR(5) for descriptions of the following attributes:
242 box;
243 c | c
244 l | l .
245 ATTRIBUTE TYPE  ATTRIBUTE VALUE
247 Interface Stability     Standard
249 MT-Level        Async-Signal-Safe
252 .SH SEE ALSO
255 \fBIntro\fR(2), \fBcreat\fR(2), \fBdup\fR(2), \fBexec\fR(2), \fBfcntl\fR(2),
256 \fBioctl\fR(2), \fBopen\fR(2) \fBpipe\fR(2), \fBfattach\fR(3C),
257 \fBfclose\fR(3C), \fBfdetach\fR(3C), \fBfopen\fR(3C), \fBsignal\fR(3C),
258 \fBsignal.h\fR(3HEAD), \fBattributes\fR(5), \fBstandards\fR(5),
259 \fBstreamio\fR(7I)