From: Shenghou Ma Date: Sat, 23 Jun 2012 17:41:17 +0000 (+0800) Subject: runtime: fix struct Sigaction for Linux/386 X-Git-Tag: go1.1rc2~2904 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a033e367661d2c76f8949822673ffc36a560852a;p=gostls13.git runtime: fix struct Sigaction for Linux/386 We need to use kernel headers to generate defs_linux_$GOARCH.h R=golang-dev, dave, alex.brainman, iant CC=golang-dev https://golang.org/cl/6296091 --- diff --git a/src/pkg/runtime/defs_linux_386.h b/src/pkg/runtime/defs_linux_386.h index 02760f987b..e257a6f85f 100644 --- a/src/pkg/runtime/defs_linux_386.h +++ b/src/pkg/runtime/defs_linux_386.h @@ -132,7 +132,7 @@ struct Sigaction { void *k_sa_handler; uint32 sa_flags; void *sa_restorer; - uint32 sa_mask; + uint64 sa_mask; }; struct Siginfo { int32 si_signo;