From 4aaf800fd763ea6e9760bafd4612fe0cf3f7a0a1 Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Sat, 22 Sep 2012 05:53:44 +1000 Subject: [PATCH] [release-branch.go1] runtime: fix struct Sigaction for Linux/386 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ««« backport 645947213cac 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 »»» --- src/pkg/runtime/defs_linux_386.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.0