aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os_darwin.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-11-18 17:18:08 +0000
committerRuss Cox <rsc@golang.org>2015-11-18 17:18:20 +0000
commit5af2be8604168dd7d11c2e3ddc09b571809837e4 (patch)
treee8a8818064850aab0b24f9b02330374d4bbe9a0e /src/runtime/os_darwin.go
parent53c21df12153871bf3bfcc8de25ebab0ffc008c7 (diff)
downloadgo-5af2be8604168dd7d11c2e3ddc09b571809837e4.tar.gz
go-5af2be8604168dd7d11c2e3ddc09b571809837e4.zip
Revert "runtime: use a proper type, sigset, for m.sigmask"
This reverts commit 7db77271e423604c3b58b4c4da60ddc3c3eecc0d. Change-Id: I6d8855eb05ca331025dc49a5533c6da4d1fa4e84 Reviewed-on: https://go-review.googlesource.com/17030 Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/runtime/os_darwin.go')
-rw-r--r--src/runtime/os_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/os_darwin.go b/src/runtime/os_darwin.go
index 75a6eebb70..7a70639b02 100644
--- a/src/runtime/os_darwin.go
+++ b/src/runtime/os_darwin.go
@@ -24,7 +24,7 @@ func mach_thread_self() uint32
func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
//go:noescape
-func sigprocmask(how uint32, new, old *sigset)
+func sigprocmask(how uint32, new, old *uint32)
//go:noescape
func sigaction(mode uint32, new, old *sigactiont)