From: Ian Lance Taylor Date: Fri, 23 Oct 2009 06:51:54 +0000 (-0700) Subject: Fix the sigaction declaration to match the system for Linux. X-Git-Tag: weekly.2009-11-06~216 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fd5fa4b301b79ee95ad5dec2d55a33451cd4392f;p=gostls13.git Fix the sigaction declaration to match the system for Linux. I don't know whether Darwin needs a change here. R=rsc http://go/go-review/1013010 --- diff --git a/src/pkg/runtime/linux/os.h b/src/pkg/runtime/linux/os.h index c36813a9bf..fd6ccffc39 100644 --- a/src/pkg/runtime/linux/os.h +++ b/src/pkg/runtime/linux/os.h @@ -7,4 +7,4 @@ int32 futex(uint32*, int32, uint32, Timespec*, uint32*, uint32); int32 clone(int32, void*, M*, G*, void(*)(void)); struct Sigaction; -void rt_sigaction(int64, struct Sigaction*, void*, uint64); +void rt_sigaction(uintptr, struct Sigaction*, void*, uintptr);