1
0
mirror of https://github.com/golang/go synced 2024-11-15 08:30:35 -07:00

[release-branch.go1] runtime: fix struct Sigaction for Linux/386

««« 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

»»»
This commit is contained in:
Shenghou Ma 2012-09-22 05:53:44 +10:00
parent 133727bd0c
commit 4aaf800fd7

View File

@ -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;