aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/norace_linux_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/norace_linux_test.go')
-rw-r--r--src/runtime/norace_linux_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/norace_linux_test.go b/src/runtime/norace_linux_test.go
index 94b7c7a467..b199aa633c 100644
--- a/src/runtime/norace_linux_test.go
+++ b/src/runtime/norace_linux_test.go
@@ -9,6 +9,7 @@
package runtime_test
import (
+ "internal/abi"
"runtime"
"testing"
"time"
@@ -25,7 +26,7 @@ func newOSProcCreated() {
// Can't be run with -race because it inserts calls into newOSProcCreated()
// that require a valid G/M.
func TestNewOSProc0(t *testing.T) {
- runtime.NewOSProc0(0x800000, unsafe.Pointer(runtime.FuncPC(newOSProcCreated)))
+ runtime.NewOSProc0(0x800000, unsafe.Pointer(abi.FuncPCABIInternal(newOSProcCreated)))
check := time.NewTicker(100 * time.Millisecond)
defer check.Stop()
end := time.After(5 * time.Second)