summaryrefslogtreecommitdiff
path: root/src/pkg/os/signal
AgeCommit message (Collapse)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi7-558/+0
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg5-5/+16
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg3-9/+11
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg5-28/+220
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg3-16/+121
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý7-33/+217
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý3-0/+64
2011-09-13Imported Upstream version 60Ondřej Surý3-64/+0
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý4-52/+8
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-1/+1
2010-06-01 Correct the regexp for finding unix signal names.Vinu Rajashekhar1-1/+1
For example, earlier, the regexp would accept SIGQUEUE_MAX as a unix signal with name SIGQUEUE. Now it is ignored. R=iant CC=golang-dev, golang-nuts, joel.sherrill http://codereview.appspot.com/1452041 Committer: Ian Lance Taylor <iant@golang.org>
2010-01-11Replicate signal names from syscall in os/signal.David Symonds3-2/+32
R=rsc CC=golang-dev http://codereview.appspot.com/183142 Committer: Russ Cox <rsc@golang.org>
2009-12-23Use t.Errorf for formatted error output.Ian Lance Taylor1-1/+1
R=dsymonds1 CC=golang-dev http://codereview.appspot.com/183049
2009-12-16runtime: if os/signal is not in use, crash onRuss Cox1-0/+1
most signals, so that ordinary programs can be killed, for example. Fixes issue 434. R=dsymonds1 CC=golang-dev, hoisie http://codereview.appspot.com/180064
2009-12-15os/signal: new packageDavid Symonds3-0/+77
Fixes issue 71. R=rsc, r http://codereview.appspot.com/162056 Committer: Russ Cox <rsc@golang.org>