summaryrefslogtreecommitdiff
path: root/lib/libc/gen/posix_spawn_file_actions_init.3
blob: e2467188a3d3c1988d78a595370e64c72f74c3b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.\"	$OpenBSD: posix_spawn_file_actions_init.3,v 1.5 2012/04/11 14:32:38 jmc Exp $
.\"
.\" Copyright (c) 2012 Marc Espie <espie@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: April 11 2012 $
.Dt POSIX_SPAWN_FILE_ACTIONS_INIT 3
.Os
.Sh NAME
.Nm posix_spawn_file_actions_init ,
.Nm posix_spawn_file_actions_destroy
.Nd "create and destroy posix_spawn file actions objects"
.Sh SYNOPSIS
.In spawn.h
.Ft int
.Fn posix_spawn_file_actions_init "posix_spawn_file_actions_t *file_actions"
.Ft int
.Fn posix_spawn_file_actions_destroy "posix_spawn_file_actions_t *file_actions"
.Sh DESCRIPTION
File actions objects can be initialized by
.Fn posix_spawn_file_actions_init
and destroyed by
.Fn posix_spawn_file_actions_destroy .
.Pp
Multiple initialization of the same object is undefined behavior
and will lead to memory leaks.
.Pp
Similarly, objects should be passed to
.Fn posix_spawn_file_actions_destroy
to reclaim memory.
The object should not be re-used after destruction.
It can however be initialized again with
.Fn posix_spawn_file_actions_init .
.Sh RETURN VALUES
These function return 0 on successful completion.
They may return
.Er ENOMEM
when running out of memory.
.Sh SEE ALSO
.Xr posix_spawn 3 ,
.Xr posix_spawn_file_actions_addopen 3
.Sh STANDARDS
Both functions conform to
.St -p1003.1-2001 .
.Sh AUTHORS
.An Ed Schouten Aq ed@FreeBSD.org