diff options
| author | Russ Cox <rsc@swtch.com> | 2009-08-17 17:29:44 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2009-08-17 17:29:44 -0700 |
| commit | 0829f75bba8a5eb60a7f46e21aa266736b4c4bab (patch) | |
| tree | c5966ec780f68a8ae0c9aec1932e5f4147fcd180 /src/libthread/exec.c | |
| parent | 5186b55afc97730b733a85cdcb38d6ee7fdd32c7 (diff) | |
libthread: make page work on OS X
Diffstat (limited to 'src/libthread/exec.c')
| -rw-r--r-- | src/libthread/exec.c | 1 |
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){ |