34 lines
503 B
C
34 lines
503 B
C
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#ifdef __linux__
|
|
#include <linux/limits.h>
|
|
#endif
|
|
|
|
int rpm_close_all (void)
|
|
{
|
|
int fd, max;
|
|
|
|
max = sysconf (_SC_OPEN_MAX);
|
|
if (max <= 0)
|
|
return -1;
|
|
|
|
#ifdef __linux__
|
|
if (max < NR_OPEN)
|
|
max = NR_OPEN;
|
|
#endif
|
|
|
|
for (fd = STDERR_FILENO + 1; fd < max; ++fd)
|
|
{
|
|
if (close (fd) && errno != EBADF)
|
|
/*
|
|
* Possible errors are:
|
|
* EINTR: the close() call was interrupted by a signal;
|
|
* EIO: an I/O error occurred.
|
|
*/
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|