summaryrefslogtreecommitdiffhomepage
path: root/src/internal/slibtool_spawn_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/slibtool_spawn_impl.h')
-rw-r--r--src/internal/slibtool_spawn_impl.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/internal/slibtool_spawn_impl.h b/src/internal/slibtool_spawn_impl.h
index e4efda1..da2e762 100644
--- a/src/internal/slibtool_spawn_impl.h
+++ b/src/internal/slibtool_spawn_impl.h
@@ -9,6 +9,7 @@
#include <limits.h>
#include <unistd.h>
+#include <stdlib.h>
#include <stdbool.h>
#include <errno.h>
#include <sys/wait.h>
@@ -57,13 +58,18 @@ static inline int slbt_spawn(
#endif
- if (pid < 0)
+ if (pid < 0) {
+ ectx->pid = pid;
+ ectx->exitcode = errno;
return -1;
+ }
- if (pid == 0)
- return execvp(
+ if (pid == 0) {
+ execvp(
ectx->program,
ectx->argv);
+ _exit(errno);
+ }
errno = 0;
ectx->pid = pid;