X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=exec.c;h=86362c381fd8b3fe236caeddd4facec88130c901;hp=bbf1b41addf8aab65363065c9e3b6ad91cae4968;hb=74943155276117fe23d94180b5fc12cd8749ac22;hpb=ebb0565e946770c5b83c4d28c1f674dffdeaf551 diff --git a/exec.c b/exec.c index bbf1b41a..86362c38 100644 --- a/exec.c +++ b/exec.c @@ -5,10 +5,12 @@ */ /** \file exec.c Helper functions for spawning new processes. */ +#include #include "para.h" #include "close_on_fork.h" #include "error.h" #include "string.h" +#include "fd.h" /** * Spawn a new process and redirect fd 0, 1, and 2. @@ -35,15 +37,18 @@ static int para_exec(pid_t *pid, const char *file, char *const *const args, int if (fds[2] > 0 && pipe(err) < 0) goto err_out; if (!fds[0] || !fds[1] || !fds[2]) { - ret = -E_NULL_OPEN; - null = open("/dev/null", O_RDONLY); - if (null < 0) + ret = para_open("/dev/null", O_RDONLY, 42); + if (ret < 0) goto err_out; + null = ret; } - if ((*pid = fork()) < 0) - exit(EXIT_FAILURE); + ret = fork(); + if (ret < 0) { + ret = -ERRNO_TO_PARA_ERROR(errno); + goto err_out; + } + *pid = ret; if (!(*pid)) { /* child */ - close_listed_fds(); /* close unneeded fds */ if (fds[0] >= 0) { if (fds[0]) { close(in[1]); @@ -103,6 +108,7 @@ err_out: close(in[1]); if (null >= 0) close(null); + PARA_ERROR_LOG("%s\n", para_strerror(-ret)); return ret; }