Use a more "natural" way of writing argument lists in extra-opts tests.
[monitoring-plugins.git] / gl / cloexec.c
blobff8105ba024bd8f04a88ece81dd2cca3b6f8d95b
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 3 of the License, or
8 (at your option) 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, see <http://www.gnu.org/licenses/>.
18 The code is taken from glibc/manual/llio.texi */
20 #include <config.h>
22 #include "cloexec.h"
24 #include <unistd.h>
25 #include <fcntl.h>
27 #ifndef FD_CLOEXEC
28 # define FD_CLOEXEC 1
29 #endif
31 /* Set the `FD_CLOEXEC' flag of DESC if VALUE is true,
32 or clear the flag if VALUE is false.
33 Return 0 on success, or -1 on error with `errno' set. */
35 int
36 set_cloexec_flag (int desc, bool value)
38 #if defined F_GETFD && defined F_SETFD
40 int flags = fcntl (desc, F_GETFD, 0);
42 if (0 <= flags)
44 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
46 if (flags == newflags
47 || fcntl (desc, F_SETFD, newflags) != -1)
48 return 0;
51 return -1;
53 #else
55 return 0;
57 #endif