diff options
| author | Russ Cox <rsc@golang.org> | 2013-02-15 12:18:33 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2013-02-15 12:18:33 -0500 |
| commit | c7f7bbbf03415e1805e503846627f2e08423c360 (patch) | |
| tree | 8ef2e49d555a6febdccda01d89df9123b929e742 /src/pkg/runtime/runtime.h | |
| parent | f8f2727ab50decb8db6d2235e77e8079b8d22eba (diff) | |
| download | go-c7f7bbbf03415e1805e503846627f2e08423c360.tar.xz | |
runtime: fix build on linux
In addition to the compile failure fixed in signal*.c,
preserving the signal mask led to very strange crashes.
Testing shows that looking for SIG_IGN is all that
matters to get along with nohup, so reintroduce
sigset_zero instead of trying to preserve the signal mask.
TBR=iant
CC=golang-dev
https://golang.org/cl/7323067
Diffstat (limited to 'src/pkg/runtime/runtime.h')
| -rw-r--r-- | src/pkg/runtime/runtime.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 6709e4f261..77f60cb4b5 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -290,7 +290,6 @@ struct M GCStats gcstats; bool racecall; void* racepc; - void* sigset; uint32 moreframesize_minalloc; uintptr settype_buf[1024]; |
