aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/linux
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2009-10-22 23:51:54 -0700
committerIan Lance Taylor <iant@golang.org>2009-10-22 23:51:54 -0700
commitfd5fa4b301b79ee95ad5dec2d55a33451cd4392f (patch)
tree45297842b09f0318fc242c049171a55239d4662b /src/pkg/runtime/linux
parent057f7d5b0700fd3867ccb930e9114560b43152b1 (diff)
downloadgo-fd5fa4b301b79ee95ad5dec2d55a33451cd4392f.tar.xz
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
Diffstat (limited to 'src/pkg/runtime/linux')
-rw-r--r--src/pkg/runtime/linux/os.h2
1 files changed, 1 insertions, 1 deletions
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);