diff options
| author | Christopher Wedgwood <cw@f00f.org> | 2010-02-03 23:24:28 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2010-02-03 23:24:28 -0800 |
| commit | 43d2e59a811231905a6ee2d14c5ee4e5c6da9896 (patch) | |
| tree | 289ebd63d51541dbb5de6a6395acbc3451ba2e97 /src/pkg/runtime/linux | |
| parent | 2f1a321d4faa1a229c0790c8328ab3d304347695 (diff) | |
| download | go-43d2e59a811231905a6ee2d14c5ee4e5c6da9896.tar.xz | |
os/signal: send SIGCHLDs to Incoming
R=rsc
CC=golang-dev
https://golang.org/cl/199082
Diffstat (limited to 'src/pkg/runtime/linux')
| -rw-r--r-- | src/pkg/runtime/linux/signals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/linux/signals.h b/src/pkg/runtime/linux/signals.h index 3431cd2184..dbc87db25c 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", |
