tools/llvm: Do not build with symbols
[minix3.git] / lib / libc / gen / posix_spawn_file_actions_addopen.3
blobd0a701f10803ec367c61fefc89e175cc38c493ad
1 .\" $NetBSD: posix_spawn_file_actions_addopen.3,v 1.3 2013/07/20 21:39:57 wiz Exp $
2 .\"
3 .\" Copyright (c) 2008 Ed Schouten <ed@FreeBSD.org>
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .\" Portions of this text are reprinted and reproduced in electronic form
28 .\" from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology --
29 .\" Portable Operating System Interface (POSIX), The Open Group Base
30 .\" Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of
31 .\" Electrical and Electronics Engineers, Inc and The Open Group.  In the
32 .\" event of any discrepancy between this version and the original IEEE and
33 .\" The Open Group Standard, the original IEEE and The Open Group Standard is
34 .\" the referee document.  The original Standard can be obtained online at
35 .\"     http://www.opengroup.org/unix/online.html.
36 .\"
37 .\" $FreeBSD: src/lib/libc/gen/posix_spawn_file_actions_addopen.3,v 1.2.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $
38 .\"
39 .Dd December 20, 2011
40 .Dt POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 3
41 .Os
42 .Sh NAME
43 .Nm posix_spawn_file_actions_addopen ,
44 .Nm posix_spawn_file_actions_adddup2 ,
45 .Nm posix_spawn_file_actions_addclose
46 .Nd "add open, dup2 or close action to spawn file actions object"
47 .Sh LIBRARY
48 .Lb libc
49 .Sh SYNOPSIS
50 .In spawn.h
51 .Ft int
52 .Fn posix_spawn_file_actions_addopen "posix_spawn_file_actions_t * file_actions" "int fildes" "const char *restrict path" "int oflag" "mode_t mode"
53 .Ft int
54 .Fn posix_spawn_file_actions_adddup2 "posix_spawn_file_actions_t * file_actions" "int fildes" "int newfildes"
55 .Ft int
56 .Fn posix_spawn_file_actions_addclose "posix_spawn_file_actions_t * file_actions" "int fildes"
57 .Sh DESCRIPTION
58 These functions add an open, dup2 or close action to a spawn
59 file actions object.
60 .Pp
61 A spawn file actions object is of type
62 .Vt posix_spawn_file_actions_t
63 (defined in
64 .In spawn.h )
65 and is used to specify a series of actions to be performed by a
66 .Fn posix_spawn
68 .Fn posix_spawnp
69 operation in order to arrive at the set of open file descriptors for the
70 child process given the set of open file descriptors of the parent.
71 .Pp
72 A spawn file actions object, when passed to
73 .Fn posix_spawn
75 .Fn posix_spawnp ,
76 specify how the set of open file descriptors in the calling
77 process is transformed into a set of potentially open file descriptors
78 for the spawned process.
79 This transformation is as if the specified sequence of actions was
80 performed exactly once, in the context of the spawned process (prior to
81 execution of the new process image), in the order in which the actions
82 were added to the object; additionally, when the new process image is
83 executed, any file descriptor (from this new set) which has its
84 .Dv FD_CLOEXEC
85 flag set is closed (see
86 .Fn posix_spawn ) .
87 .Pp
88 The
89 .Fn posix_spawn_file_actions_addopen
90 function adds an open action to the object referenced by
91 .Fa file_actions
92 that causes the file named by
93 .Fa path
94 to be opened (as if
95 .Bd -literal -offset indent
96 open(path, oflag, mode)
97 .Ed
98 .Pp
99 had been called, and the returned file descriptor, if not
100 .Fa fildes ,
101 had been changed to
102 .Fa fildes )
103 when a new process is spawned using this file actions object.
105 .Fa fildes
106 was already an open file descriptor, it is closed before the new
107 file is opened.
109 The string described by
110 .Fa path
111 is copied by the
112 .Fn posix_spawn_file_actions_addopen
113 function.
116 .Fn posix_spawn_file_actions_adddup2
117 function adds a dup2 action to the object referenced by
118 .Fa file_actions
119 that causes the file descriptor
120 .Fa fildes
121 to be duplicated as
122 .Fa newfildes
123 (as if
124 .Bd -literal -offset indent
125 dup2(fildes, newfildes)
128 had been called) when a new process is spawned using this file actions object.
131 .Fn posix_spawn_file_actions_addclose
132 function adds a close action to the object referenced by
133 .Fa file_actions
134 that causes the file descriptor
135 .Fa fildes
136 to be closed (as if
137 .Bd -literal -offset indent
138 close(fildes)
141 had been called) when a new process is spawned using this file actions
142 object.
143 .Sh RETURN VALUES
144 Upon successful completion, these functions return zero;
145 otherwise, an error number is returned to indicate the error.
146 .Sh ERRORS
147 These
148 functions fail if:
149 .Bl -tag -width Er
150 .It Bq Er EINVAL
151 The value specified by
152 .Fa fildes
154 .Fa newfildes
155 is negative.
156 .It Bq Er ENOMEM
157 Insufficient memory exists to add to the spawn file actions object.
159 .Sh SEE ALSO
160 .Xr close 2 ,
161 .Xr dup2 2 ,
162 .Xr open 2 ,
163 .Xr posix_spawn 3 ,
164 .Xr posix_spawn_file_actions_destroy 3 ,
165 .Xr posix_spawn_file_actions_init 3 ,
166 .Xr posix_spawnp 3
167 .Sh STANDARDS
169 .Fn posix_spawn_file_actions_addopen ,
170 .Fn posix_spawn_file_actions_adddup2
172 .Fn posix_spawn_file_actions_addclose
173 functions conform to
174 .St -p1003.1-2001 .
175 .Sh HISTORY
177 .Fn posix_spawn_file_actions_addopen ,
178 .Fn posix_spawn_file_actions_adddup2
180 .Fn posix_spawn_file_actions_addclose
181 functions first appeared in
182 .Fx 8.0
183 and imported for
184 .Nx 6.0 .
185 .Sh AUTHORS
186 .An Ed Schouten Aq Mt ed@FreeBSD.org