1
0
mirror of https://github.com/golang/go synced 2024-11-22 02:54:39 -07:00

os/signal: send SIGCHLDs to Incoming

R=rsc
CC=golang-dev
https://golang.org/cl/199082
This commit is contained in:
Christopher Wedgwood 2010-02-03 23:24:28 -08:00 committed by Russ Cox
parent 2f1a321d4f
commit 43d2e59a81
3 changed files with 3 additions and 3 deletions

View 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",

View 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",

View 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",