Commit 1ebfb082 authored by Ian Lance Taylor's avatar Ian Lance Taylor

runtime: remove unnecessary GOOS switch

Change-Id: I8f518e273c02110042b08f7c50c3d38a648c8b6e
Reviewed-on: https://go-review.googlesource.com/2281Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent 2958860e
...@@ -160,13 +160,8 @@ func badsignal(sig uintptr) { ...@@ -160,13 +160,8 @@ func badsignal(sig uintptr) {
// call to cgocallback below will bring down the whole process. // call to cgocallback below will bring down the whole process.
// It's better to miss a few SIGPROF signals than to abort in this case. // It's better to miss a few SIGPROF signals than to abort in this case.
// See http://golang.org/issue/9456. // See http://golang.org/issue/9456.
switch GOOS { if _SIGPROF != 0 && sig == _SIGPROF && needextram != 0 {
case "windows", "plan9": return
// no actual SIGPROF is defined, nothing to do
default:
if sig == _SIGPROF && needextram != 0 {
return
}
} }
cgocallback(unsafe.Pointer(funcPC(sigsend)), noescape(unsafe.Pointer(&sig)), unsafe.Sizeof(sig)) cgocallback(unsafe.Pointer(funcPC(sigsend)), noescape(unsafe.Pointer(&sig)), unsafe.Sizeof(sig))
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment