aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/exec.c')
-rw-r--r--src/libthread/exec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libthread/exec.c b/src/libthread/exec.c
index 3c71e4b1..1875eb98 100644
--- a/src/libthread/exec.c
+++ b/src/libthread/exec.c
@@ -62,6 +62,7 @@ _threadspawn(int fd[3], char *cmd, char *argv[])
int i, n, p[2], pid;
char exitstr[100];
+ notifyoff("sys: child"); /* do not let child note kill us */
if(pipe(p) < 0)
return -1;
if(fcntl(p[0], F_SETFD, 1) < 0 || fcntl(p[1], F_SETFD, 1) < 0){