diff options
| author | Russ Cox <rsc@golang.org> | 2013-02-28 16:24:38 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2013-02-28 16:24:38 -0500 |
| commit | f8d49b509bb081dbf7fc1e1f4a1403e3ab8ce56e (patch) | |
| tree | 117568f6988d5ca2aee61eb6997f990941c915fa /src/pkg/runtime/sys_linux_arm.s | |
| parent | 40ed753ebd6b74747816fde7b130116ff7ef9580 (diff) | |
| download | go-f8d49b509bb081dbf7fc1e1f4a1403e3ab8ce56e.tar.xz | |
runtime/cgo: make symbol naming consistent
The naming in this package is a disaster.
Make it all consistent.
Remove some 'static' from functions that will
be referred to from other files soon.
This CL is purely renames using global search and replace.
Submitting separately so that real changes will not
be drowned out by these renames in future CLs.
TBR=iant
CC=golang-dev
https://golang.org/cl/7416046
Diffstat (limited to 'src/pkg/runtime/sys_linux_arm.s')
| -rw-r--r-- | src/pkg/runtime/sys_linux_arm.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/sys_linux_arm.s b/src/pkg/runtime/sys_linux_arm.s index 1001e44553..8bae2933f7 100644 --- a/src/pkg/runtime/sys_linux_arm.s +++ b/src/pkg/runtime/sys_linux_arm.s @@ -280,10 +280,10 @@ TEXT runtime·sigaltstack(SB),7,$0 TEXT runtime·sigtramp(SB),7,$24 // this might be called in external code context, // where g and m are not set. - // first save R0, because cgo_load_gm will clobber it + // first save R0, because _cgo_load_gm will clobber it // TODO(adonovan): call runtime·badsignal if m=0, like other platforms? MOVW R0, 4(R13) - MOVW cgo_load_gm(SB), R0 + MOVW _cgo_load_gm(SB), R0 CMP $0, R0 BL.NE (R0) |
