mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
add shim for closefrom to support systems without that function (glibc before 2.34)
This commit is contained in:
parent
7fa9dbefe3
commit
9644d46dac
@ -4,6 +4,22 @@
|
|||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
||||||
|
#ifndef closefrom
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
|
||||||
|
void closefrom(int fd)
|
||||||
|
{
|
||||||
|
int const max_fd = sysconf(_SC_OPEN_MAX);
|
||||||
|
for(int i = fd; i < max_fd; i++)
|
||||||
|
{
|
||||||
|
close(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace webfuse
|
namespace webfuse
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -9,6 +9,23 @@
|
|||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
|
#ifndef closefrom
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
|
||||||
|
void closefrom(int fd)
|
||||||
|
{
|
||||||
|
int const max_fd = sysconf(_SC_OPEN_MAX);
|
||||||
|
for(int i = fd; i < max_fd; i++)
|
||||||
|
{
|
||||||
|
close(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
namespace webfuse
|
namespace webfuse
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user