diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-08-17 19:35:49 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-08-17 19:35:49 +1000 |
commit | 3083bc2b52fe00b5c5fe87dd3638969835dab0e8 (patch) | |
tree | 0ffdaf950cd854baca3e1fb54a63ee3f61fc871d /openbsd-compat/bsd-closefrom.c | |
parent | e6b641a9a13d664fb7b98227218a0b3f65dfd40c (diff) |
- (dtucker) [configure.ac openbsd-compat/bsd-closefrom.c] Use F_CLOSEM fcntl
for closefrom() on AIX. Pointed out by William Ahern.
Diffstat (limited to 'openbsd-compat/bsd-closefrom.c')
-rw-r--r-- | openbsd-compat/bsd-closefrom.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-closefrom.c b/openbsd-compat/bsd-closefrom.c index 3f17302d1..e7a521e43 100644 --- a/openbsd-compat/bsd-closefrom.c +++ b/openbsd-compat/bsd-closefrom.c | |||
@@ -22,6 +22,9 @@ | |||
22 | #include <sys/param.h> | 22 | #include <sys/param.h> |
23 | #include <unistd.h> | 23 | #include <unistd.h> |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #ifdef HAVE_FCNTL_H | ||
26 | # include <fcntl.h> | ||
27 | #endif | ||
25 | #include <limits.h> | 28 | #include <limits.h> |
26 | #include <stdlib.h> | 29 | #include <stdlib.h> |
27 | #include <stddef.h> | 30 | #include <stddef.h> |
@@ -76,6 +79,10 @@ closefrom(int lowfd) | |||
76 | } | 79 | } |
77 | (void) closedir(dirp); | 80 | (void) closedir(dirp); |
78 | } else | 81 | } else |
82 | #elif defined(USE_FCNTL_CLOSEM) | ||
83 | if (fcntl(lowfd, F_CLOSEM, 0) != -1) { | ||
84 | return; | ||
85 | } else | ||
79 | #endif | 86 | #endif |
80 | { | 87 | { |
81 | /* | 88 | /* |