From 43d2e59a811231905a6ee2d14c5ee4e5c6da9896 Mon Sep 17 00:00:00 2001 From: Christopher Wedgwood Date: Wed, 3 Feb 2010 23:24:28 -0800 Subject: [PATCH] os/signal: send SIGCHLDs to Incoming R=rsc CC=golang-dev https://golang.org/cl/199082 --- src/pkg/runtime/darwin/signals.h | 2 +- src/pkg/runtime/freebsd/signals.h | 2 +- src/pkg/runtime/linux/signals.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pkg/runtime/darwin/signals.h b/src/pkg/runtime/darwin/signals.h index 449a6a7db82..c93e7fbe9b0 100644 --- a/src/pkg/runtime/darwin/signals.h +++ b/src/pkg/runtime/darwin/signals.h @@ -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", diff --git a/src/pkg/runtime/freebsd/signals.h b/src/pkg/runtime/freebsd/signals.h index b986bcb3a3d..93ff7eb9812 100644 --- a/src/pkg/runtime/freebsd/signals.h +++ b/src/pkg/runtime/freebsd/signals.h @@ -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", diff --git a/src/pkg/runtime/linux/signals.h b/src/pkg/runtime/linux/signals.h index 3431cd21841..dbc87db25c2 100644 --- a/src/pkg/runtime/linux/signals.h +++ b/src/pkg/runtime/linux/signals.h @@ -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",