res; \
})
-/*
- * The macro below closes file descriptors inherited from the process
- * that forked the current process. Close these file descriptors right
- * after the start of main() in order to get consistent results across
- * different releases. Known behavior:
- * - Fedora Core 1's Perl opens /dev/pts/2 as fd 10.
- * - For Ubuntu 8.04, see also
- * https://bugs.launchpad.net/ubuntu/+source/seahorse/+bug/235184
- */
-__attribute__((unused))
-static void close_inherited (void) {
- struct stat sb;
- int i; int max_fds = sysconf (_SC_OPEN_MAX);
- if (max_fds < 0)
- max_fds = 1024; /* Fallback if sysconf fails, returns -1. */
-
- /* Only leave 0 (stdin), 1 (stdout) and 2 (stderr) open. */
- for (i = 3; i < max_fds; i++)
- if (fstat (i, &sb) != -1) /* Test if the file descriptor exists first. */
- close(i);
-}
-#define CLOSE_INHERITED_FDS close_inherited ()
-/* Note that the following would be nicer, but close_range is fairly new. */
-// #define CLOSE_INHERITED_FDS close_range (3, ~0U, 0)
-
#endif /* _FDLEAK_H_ */