]> Cypherpunks repositories - gostls13.git/commitdiff
os/signal: send SIGCHLDs to Incoming
authorChristopher Wedgwood <cw@f00f.org>
Thu, 4 Feb 2010 07:24:28 +0000 (23:24 -0800)
committerRuss Cox <rsc@golang.org>
Thu, 4 Feb 2010 07:24:28 +0000 (23:24 -0800)
R=rsc
CC=golang-dev
https://golang.org/cl/199082

src/pkg/runtime/darwin/signals.h
src/pkg/runtime/freebsd/signals.h
src/pkg/runtime/linux/signals.h

index 449a6a7db82f4d8853dc2538fd216a46d5c04922..c93e7fbe9b09f9b86ac69566bb7add6342bcf938 100644 (file)
@@ -28,7 +28,7 @@ static SigTab sigtab[] = {
        /* 17 */        0, "SIGSTOP: stop",
        /* 18 */        Q+I+R, "SIGTSTP: keyboard stop",
        /* 19 */        0, "SIGCONT: continue after stop",
-       /* 20 */        I+R, "SIGCHLD: child status has changed",
+       /* 20 */        Q+I+R, "SIGCHLD: child status has changed",
        /* 21 */        Q+I+R, "SIGTTIN: background read from tty",
        /* 22 */        Q+I+R, "SIGTTOU: background write to tty",
        /* 23 */        Q+I+R, "SIGIO: i/o now possible",
index b986bcb3a3da644721b36c0720b51ae1e7b98b22..93ff7eb98122f416006cff354827c75ea09caa7d 100644 (file)
@@ -28,7 +28,7 @@ static SigTab sigtab[] = {
        /* 17 */        0, "SIGSTOP: stop, unblockable",
        /* 18 */        Q+I+R, "SIGTSTP: stop from tty",
        /* 19 */        0, "SIGCONT: continue",
-       /* 20 */        I+R, "SIGCHLD: child status has changed",
+       /* 20 */        Q+I+R, "SIGCHLD: child status has changed",
        /* 21 */        Q+I+R, "SIGTTIN: background read from tty",
        /* 22 */        Q+I+R, "SIGTTOU: background write to tty",
        /* 23 */        Q+I+R, "SIGIO: i/o now possible",
index 3431cd218418fc64f2f7fac2816412c5c4d841e8..dbc87db25c205454831eb943203e80105c6b3c16 100644 (file)
@@ -25,7 +25,7 @@ static SigTab sigtab[] = {
        /* 14 */        Q+I+R, "SIGALRM: alarm clock",
        /* 15 */        Q+R, "SIGTERM: termination",
        /* 16 */        C, "SIGSTKFLT: stack fault",
-       /* 17 */        I+R, "SIGCHLD: child status has changed",
+       /* 17 */        Q+I+R, "SIGCHLD: child status has changed",
        /* 18 */        0, "SIGCONT: continue",
        /* 19 */        0, "SIGSTOP: stop, unblockable",
        /* 20 */        Q+I+R, "SIGTSTP: keyboard stop",