Blame lib/cloexec.h

Packit 8f70b4
/* cloexec.c - set or clear the close-on-exec descriptor flag
Packit 8f70b4
Packit 8f70b4
   Copyright (C) 2004, 2009-2018 Free Software Foundation, Inc.
Packit 8f70b4
Packit 8f70b4
   This program is free software: you can redistribute it and/or modify
Packit 8f70b4
   it under the terms of the GNU General Public License as published by
Packit 8f70b4
   the Free Software Foundation; either version 3 of the License, or
Packit 8f70b4
   (at your option) any later version.
Packit 8f70b4
Packit 8f70b4
   This program is distributed in the hope that it will be useful,
Packit 8f70b4
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 8f70b4
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 8f70b4
   GNU General Public License for more details.
Packit 8f70b4
Packit 8f70b4
   You should have received a copy of the GNU General Public License
Packit 8f70b4
   along with this program.  If not, see <https://www.gnu.org/licenses/>.
Packit 8f70b4
Packit 8f70b4
*/
Packit 8f70b4
Packit 8f70b4
#include <stdbool.h>
Packit 8f70b4
Packit 8f70b4
/* Set the 'FD_CLOEXEC' flag of DESC if VALUE is true,
Packit 8f70b4
   or clear the flag if VALUE is false.
Packit 8f70b4
   Return 0 on success, or -1 on error with 'errno' set.
Packit 8f70b4
Packit 8f70b4
   Note that on MingW, this function does NOT protect DESC from being
Packit 8f70b4
   inherited into spawned children.  Instead, either use dup_cloexec
Packit 8f70b4
   followed by closing the original DESC, or use interfaces such as
Packit 8f70b4
   open or pipe2 that accept flags like O_CLOEXEC to create DESC
Packit 8f70b4
   non-inheritable in the first place.  */
Packit 8f70b4
Packit 8f70b4
int set_cloexec_flag (int desc, bool value);
Packit 8f70b4
Packit 8f70b4
/* Duplicates a file handle FD, while marking the copy to be closed
Packit 8f70b4
   prior to exec or spawn.  Returns -1 and sets errno if FD could not
Packit 8f70b4
   be duplicated.  */
Packit 8f70b4
Packit 8f70b4
int dup_cloexec (int fd);