]> git.cworth.org Git - tar/blob - gnu/cloexec.h
Imported Upstream version 1.24
[tar] / gnu / cloexec.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* closexec.c - set or clear the close-on-exec descriptor flag
4
5    Copyright (C) 2004, 2009-2010 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 */
21
22 #include <stdbool.h>
23
24 /* Set the `FD_CLOEXEC' flag of DESC if VALUE is true,
25    or clear the flag if VALUE is false.
26    Return 0 on success, or -1 on error with `errno' set.
27
28    Note that on MingW, this function does NOT protect DESC from being
29    inherited into spawned children.  Instead, either use dup_cloexec
30    followed by closing the original DESC, or use interfaces such as
31    open or pipe2 that accept flags like O_CLOEXEC to create DESC
32    non-inheritable in the first place.  */
33
34 int set_cloexec_flag (int desc, bool value);
35
36 /* Duplicates a file handle FD, while marking the copy to be closed
37    prior to exec or spawn.  Returns -1 and sets errno if FD could not
38    be duplicated.  */
39
40 int dup_cloexec (int fd);