Commit 40e10630 by Vicent Marti

Merge pull request #2092 from libgit2/rb/update-clar

Update to latest clar
parents f9500b45 7be88b4c
......@@ -251,17 +251,22 @@ cl_fs_cleanup(void)
}
#else
#include <errno.h>
#include <string.h>
static int
shell_out(char * const argv[])
{
int status;
int status, piderr;
pid_t pid;
pid = fork();
if (pid < 0) {
fprintf(stderr,
"System error: `fork()` call failed.\n");
"System error: `fork()` call failed (%d) - %s\n",
errno, strerror(errno));
exit(-1);
}
......@@ -269,7 +274,10 @@ shell_out(char * const argv[])
execv(argv[0], argv);
}
waitpid(pid, &status, 0);
do {
piderr = waitpid(pid, &status, WUNTRACED);
} while (piderr < 0 && (errno == EAGAIN || errno == EINTR));
return WEXITSTATUS(status);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment