From a033e367661d2c76f8949822673ffc36a560852a Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Sun, 24 Jun 2012 01:41:17 +0800 Subject: [PATCH] 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.48.1