aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/testdata/testprogcgo/aprof.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/testdata/testprogcgo/aprof.go')
-rw-r--r--src/runtime/testdata/testprogcgo/aprof.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/testdata/testprogcgo/aprof.go b/src/runtime/testdata/testprogcgo/aprof.go
index aabca9e1eb..44a15b0865 100644
--- a/src/runtime/testdata/testprogcgo/aprof.go
+++ b/src/runtime/testdata/testprogcgo/aprof.go
@@ -10,7 +10,7 @@ package main
// The test fails when the function is the first C function.
// The exported functions are the first C functions, so we use that.
-// extern void GoNop();
+// extern void CallGoNop();
import "C"
import (
@@ -38,7 +38,7 @@ func CgoCCodeSIGPROF() {
break
}
}
- C.GoNop()
+ C.CallGoNop()
}
c <- true
}()