From fd5fa4b301b79ee95ad5dec2d55a33451cd4392f Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 22 Oct 2009 23:51:54 -0700 Subject: [PATCH] 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 --- src/pkg/runtime/linux/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.48.1