diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-06-22 22:08:50 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-06-22 22:08:50 +0000 |
commit | cba7fb514589f3f2894a434b319c408b4d7ada80 (patch) | |
tree | 1f81f46bd48db07f10c7abea72ccf21948f73a05 | |
parent | db5f8d15666b7503520ad85e50171610e0051245 (diff) | |
download | gcc-cba7fb514589f3f2894a434b319c408b4d7ada80.tar.gz |
runtime: export getm function
Use go:linkname to export the getm function. This makes it visible to
runtime/testdata/testprogcgo/dropm_stub.go, which uses it as part of
the TestEnsureDropM test in runtime/crash_cgo_test.go. That test is
not run today, but it will be soon.
Reviewed-on: https://go-review.googlesource.com/46462
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249576 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rw-r--r-- | libgo/go/runtime/proc.go | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index e3fcdb8cc2f..fb6b7be02c1 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -27204e41643f4549c5ed97d48e17912f64c0aa71 +55b2b2dee55bd495a770347daaf858634057ecb0 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/libgo/go/runtime/proc.go b/libgo/go/runtime/proc.go index cb1e974eb53..bdf7144ee0c 100644 --- a/libgo/go/runtime/proc.go +++ b/libgo/go/runtime/proc.go @@ -37,6 +37,9 @@ import ( //go:linkname globrunqput runtime.globrunqput //go:linkname pidleget runtime.pidleget +// Exported for test (see runtime/testdata/testprogcgo/dropm_stub.go). +//go:linkname getm runtime.getm + // Function called by misc/cgo/test. //go:linkname lockedOSThread runtime.lockedOSThread |