diff options
-rw-r--r-- | libglusterfs/src/run.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libglusterfs/src/run.c b/libglusterfs/src/run.c index 0dbf33b9d96..f6f1931431b 100644 --- a/libglusterfs/src/run.c +++ b/libglusterfs/src/run.c @@ -31,6 +31,7 @@ #include <dirent.h> #include <assert.h> #include <sys/wait.h> +#include <sys/resource.h> #ifdef RUN_STANDALONE #define GF_CALLOC(n, s, t) calloc(n, s) @@ -293,7 +294,11 @@ runner_start (runner_t *runner) } else ret = -1; #else - for (i = 3; i < 65536; i++) { + struct rlimit rl; + ret = getrlimit (RLIMIT_NOFILE, &rl); + GF_ASSERT (ret == 0); + + for (i = 3; i < rl.rlim_cur; i++) { if (i != xpi[1]) close (i); } |