From: David Crawshaw Date: Mon, 27 Apr 2015 14:56:38 +0000 (-0400) Subject: runtime: remove unnecessary noescape to fix netbsd X-Git-Tag: go1.5beta1~886 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d707a6e0e2fe68c7cdcb552e920e8c286286fb56;p=gostls13.git runtime: remove unnecessary noescape to fix netbsd I introduced this build failure in golang.org/cl/9302 but failed to notice due to the other failures on the dashboard. Change-Id: I84bf00f664ba572c1ca722e0136d8a2cf21613ca Reviewed-on: https://go-review.googlesource.com/9363 Reviewed-by: Ian Lance Taylor Reviewed-by: Minux Ma --- diff --git a/src/runtime/os_netbsd.go b/src/runtime/os_netbsd.go index b542b41b92..af52099079 100644 --- a/src/runtime/os_netbsd.go +++ b/src/runtime/os_netbsd.go @@ -15,7 +15,6 @@ func sigaction(sig int32, new, old *sigactiont) //go:noescape func sigaltstack(new, old *sigaltstackt) -//go:noescape func sigfwd(fn uintptr, sig uint32, info *siginfo, ctx unsafe.Pointer) { throw("sigfwd not implemented") }