4660 update man pages for lofi in a zone
[unleashed.git] / usr / src / man / man3c / freopen.3c
blob9944f3e1532b2617f8ff53e2d11d64adeb88f0ab
1 '\" te
2 .\"  Copyright (c) 2002, 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 FREOPEN 3C "Jul 24, 2002"
11 .SH NAME
12 freopen \- open a stream
13 .SH SYNOPSIS
14 .LP
15 .nf
16 #include <stdio.h>
18 \fBFILE *\fR\fBfreopen\fR(\fBconst char *\fR\fIfilename\fR, \fBconst char *\fR\fImode\fR, \fBFILE *\fR\fIstream\fR);
19 .fi
21 .SH DESCRIPTION
22 .sp
23 .LP
24 The \fBfreopen()\fR function first attempts to flush the stream and close any
25 file descriptor associated with \fIstream\fR. Failure to flush or close the
26 file successfully is ignored. The error and end-of-file indicators for the
27 stream are cleared.
28 .sp
29 .LP
30 The \fBfreopen()\fR function opens the file whose pathname is the string
31 pointed to by \fIfilename\fR and associates the stream pointed to by
32 \fIstream\fR with it. The \fImode\fR argument is used just as in
33 \fBfopen\fR(3C).
34 .sp
35 .LP
36 If \fIfilename\fR is a null pointer and the application comforms to SUSv3 (see
37 \fBstandards\fR(5)), the \fBfreopen()\fR function attempts to change the mode
38 of the stream to that specified by \fImode\fR, as though the name of the file
39 currently associated with the \fIstream\fR had been used.  The following
40 changes of mode are permitted, depending upon the access mode of the file
41 descriptor underlying the stream:
42 .RS +4
43 .TP
44 .ie t \(bu
45 .el o
46 When \fB+\fR is specified, the file descriptor mode must be \fBO_RDWR\fR.
47 .RE
48 .RS +4
49 .TP
50 .ie t \(bu
51 .el o
52 When \fBr\fR is specified, the file descriptor mode must be \fBO_RDONLY\fR or
53 \fBO_RDWR\fR.
54 .RE
55 .RS +4
56 .TP
57 .ie t \(bu
58 .el o
59 When \fBa\fR or \fBw\fR is specified, the file descriptor mode must be
60 \fBO_WRONLY\fR or \fBO_RDWR\fR.
61 .RE
62 .sp
63 .LP
64 If the filename is a null pointer and the application does not comform to
65 SUSv3, \fBfreopen()\fR returns a null pointer.
66 .sp
67 .LP
68 The original stream is closed regardless of whether the subsequent open
69 succeeds.
70 .sp
71 .LP
72 After a successful call to the \fBfreopen()\fR function, the orientation of the
73 stream is cleared, the encoding rule is cleared, and the associated
74 \fBmbstate_t\fR object is set to describe an initial conversion state.
75 .sp
76 .LP
77 The largest value that can be represented correctly in an object of type
78 \fBoff_t\fR will be established as the offset maximum in the open file
79 description.
80 .SH RETURN VALUES
81 .sp
82 .LP
83 Upon successful completion, \fBfreopen()\fR returns the value of \fIstream\fR.
84 Otherwise, a null pointer is returned and \fBerrno\fR is set to indicate the
85 error.
86 .SH ERRORS
87 .sp
88 .LP
89 The \fBfreopen()\fR function will fail if:
90 .sp
91 .ne 2
92 .na
93 \fB\fBEACCES\fR\fR
94 .ad
95 .RS 16n
96 Search permission is denied on a component of the path prefix, or the file
97 exists and the permissions specified by \fImode\fR are denied, or the file does
98 not exist and write permission is denied for the parent directory of the file
99 to be created.
103 .ne 2
105 \fB\fBEBADF\fR\fR
107 .RS 16n
108 The application comforms to SUSv3, the \fIfilename\fR argument is a null
109 pointer, and either the underlying file descriptor is not valid or the mode
110 specified when the underlying file descriptor was opened does not support the
111 file access modes requested by the \fImode\fR argument.
115 .ne 2
117 \fB\fBEFAULT\fR\fR
119 .RS 16n
120 The application does not comform to SUSv3 and the \fIfilename\fR argument is a
121 null pointer.
125 .ne 2
127 \fB\fBEINTR\fR\fR
129 .RS 16n
130 A signal was caught during \fBfreopen()\fR.
134 .ne 2
136 \fB\fBEISDIR\fR\fR
138 .RS 16n
139 The named file is a directory and \fImode\fR requires write access.
143 .ne 2
145 \fB\fBELOOP\fR\fR
147 .RS 16n
148 Too many symbolic links were encountered in resolving \fIpath\fR.
152 .ne 2
154 \fB\fBEMFILE\fR\fR
156 .RS 16n
157 There are {\fBOPEN_MAX\fR} file descriptors currently open in the calling
158 process.
162 .ne 2
164 \fB\fBENAMETOOLONG\fR\fR
166 .RS 16n
167 The length of the \fIfilename\fR exceeds {\fIPATH_MAX\fR} or a pathname
168 component is longer than {\fINAME_MAX\fR}.
172 .ne 2
174 \fB\fBENFILE\fR\fR
176 .RS 16n
177 The maximum allowable number of files is currently open in the system.
181 .ne 2
183 \fB\fBENOENT\fR\fR
185 .RS 16n
186 A component of \fIfilename\fR does not name an existing file or \fIfilename\fR
187 is an empty string.
191 .ne 2
193 \fB\fBENOSPC\fR\fR
195 .RS 16n
196 The directory or file system that would contain the new file cannot be
197 expanded, the file does not exist, and it was to be created.
201 .ne 2
203 \fB\fBENOTDIR\fR\fR
205 .RS 16n
206 A component of the path prefix is not a directory.
210 .ne 2
212 \fB\fBENXIO\fR\fR
214 .RS 16n
215 The named file is a character special or block special file, and the device
216 associated with this special file does not exist.
220 .ne 2
222 \fB\fBEOVERFLOW\fR\fR
224 .RS 16n
225 The current value of the file position cannot be represented correctly in an
226 object of type \fBoff_t\fR.
230 .ne 2
232 \fB\fBEROFS\fR\fR
234 .RS 16n
235 The named file resides on a read-only file system and \fImode\fR requires write
236 access.
241 The \fBfreopen()\fR function may fail if:
243 .ne 2
245 \fB\fBEINVAL\fR\fR
247 .RS 16n
248 The value of the \fImode\fR argument is not valid.
252 .ne 2
254 \fB\fBENAMETOOLONG\fR\fR
256 .RS 16n
257 Pathname resolution of a symbolic link produced an intermediate result whose
258 length exceeds {\fIPATH_MAX\fR}.
262 .ne 2
264 \fB\fBENOMEM\fR\fR
266 .RS 16n
267 Insufficient storage space is available.
271 .ne 2
273 \fB\fBENXIO\fR\fR
275 .RS 16n
276 A request was made of a non-existent device, or the request was outside the
277 capabilities of the device.
281 .ne 2
283 \fB\fBETXTBSY\fR\fR
285 .RS 16n
286 The file is a pure procedure (shared text) file that is being executed and
287 \fImode\fR requires write access.
290 .SH USAGE
293 The \fBfreopen()\fR function is typically used to attach the preopened
294 \fIstreams\fR associated with \fBstdin\fR, \fBstdout\fR and \fBstderr\fR to
295 other files. By default \fBstderr\fR is unbuffered, but the use of
296 \fBfreopen()\fR will cause it to become buffered or line-buffered.
299 The \fBfreopen()\fR function has a transitional interface for 64-bit file
300 offsets.  See \fBlf64\fR(5).
301 .SH ATTRIBUTES
304 See \fBattributes\fR(5) for descriptions of the following attributes:
309 box;
310 c | c
311 l | l .
312 ATTRIBUTE TYPE  ATTRIBUTE VALUE
314 Interface Stability     Standard
316 MT-Level        MT-Safe
319 .SH SEE ALSO
322 \fBfclose\fR(3C), \fBfdopen\fR(3C), \fBfopen\fR(3C), \fBstdio\fR(3C),
323 \fBattributes\fR(5), \fBlf64\fR(5), \fBstandards\fR(5)