remove support for 'trademark files'
[unleashed/tickless.git] / share / man / man7fs / fd.7fs
blob00f12f07f7117c192a19301c4cc0e5a9c44cfc3b
1 '\" te
2 .\" Copyright (c) 1993, Sun Microsystems, Inc. All Rights Reserved.
3 .\" Copyright 1989 AT&T
4 .\" 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.
5 .\" 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.
6 .\" 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]
7 .TH FD 7FS "Jul 3, 1990"
8 .SH NAME
9 fd, stdin, stdout, stderr \- file descriptor files
10 .SH DESCRIPTION
11 .sp
12 .LP
13 These files, conventionally called  \fB/dev/fd/0\fR, \fB/dev/fd/1\fR,
14 \fB/dev/fd/2\fR, and so on, refer to files accessible through file descriptors.
15 If file descriptor  \fIn\fR is open, these two system calls have the same
16 effect:
17 .sp
18 .in +2
19 .nf
20 \fBfd = open("/dev/fd/\fR\fIn\fR",mode);
21 fd = dup(\fIn\fR);
22 .fi
23 .in -2
24 .sp
26 .sp
27 .LP
28 On these files  \fBcreat\fR(2) is equivalent to \fBopen\fR, and \fBmode\fR is
29 ignored. As with  \fBdup\fR, subsequent reads or writes on  \fBfd\fR fail
30 unless the original file descriptor allows the operations.
31 .sp
32 .LP
33 For convenience in referring to standard input, standard output, and standard
34 error, an additional set of names is provided:  \fB/dev/stdin\fR is a synonym
35 for  \fB/dev/fd/0\fR, \fB/dev/stdout\fR for \fB/dev/fd/1\fR, and
36 \fB/dev/stderr\fR for  \fB/dev/fd/2\fR.
37 .SH SEE ALSO
38 .sp
39 .LP
40 \fBcreat\fR(2), \fBdup\fR(2), \fBopen\fR(2)
41 .SH DIAGNOSTICS
42 .sp
43 .LP
44 \fBopen\fR(2) returns \fB\(mi1\fR and  \fBEBADF\fR if the associated file
45 descriptor is not open.