Prep for 1.4.10
[monitoring-plugins.git] / gl / cloexec.c
blob6480006a5b46ca5ea4d745a43e12617de5c55ee7
1 /* closexec.c - set or clear the close-on-exec descriptor flag
3 Copyright (C) 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 The code is taken from glibc/manual/llio.texi */
21 #include <config.h>
23 #include "cloexec.h"
25 #include <unistd.h>
26 #include <fcntl.h>
28 #ifndef FD_CLOEXEC
29 # define FD_CLOEXEC 1
30 #endif
32 /* Set the `FD_CLOEXEC' flag of DESC if VALUE is true,
33 or clear the flag if VALUE is false.
34 Return 0 on success, or -1 on error with `errno' set. */
36 int
37 set_cloexec_flag (int desc, bool value)
39 #if defined F_GETFD && defined F_SETFD
41 int flags = fcntl (desc, F_GETFD, 0);
43 if (0 <= flags)
45 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
47 if (flags == newflags
48 || fcntl (desc, F_SETFD, newflags) != -1)
49 return 0;
52 return -1;
54 #else
56 return 0;
58 #endif