aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/sys_linux_arm.s
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2018-03-04 22:10:04 -0800
committerIan Lance Taylor <iant@golang.org>2018-03-05 19:12:32 +0000
commit7178267b59b238a40fcf839a31264b2e65fa6f70 (patch)
treef9503bd92d54749329b9ee869225da305caa7da9 /src/runtime/sys_linux_arm.s
parent5f80e709125a1589ae52c9a33ff188e6c5224227 (diff)
downloadgo-7178267b59b238a40fcf839a31264b2e65fa6f70.tar.gz
go-7178267b59b238a40fcf839a31264b2e65fa6f70.zip
runtime: rename vdso symbols to use camel case
This was originally C code using names with underscores, which were retained when the code was rewritten into Go. Change the code to use Go-like camel case names. The names that come from the ELF ABI are left unchanged. Change-Id: I181bc5dd81284c07bc67b7df4635f4734b41d646 Reviewed-on: https://go-review.googlesource.com/98520 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/sys_linux_arm.s')
-rw-r--r--src/runtime/sys_linux_arm.s4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/sys_linux_arm.s b/src/runtime/sys_linux_arm.s
index c2accefaf1..2af9f29344 100644
--- a/src/runtime/sys_linux_arm.s
+++ b/src/runtime/sys_linux_arm.s
@@ -233,7 +233,7 @@ noswitch:
MOVW $CLOCK_REALTIME, R0
MOVW $8(R13), R1 // timespec
- MOVW runtime·__vdso_clock_gettime_sym(SB), R11
+ MOVW runtime·vdsoClockgettimeSym(SB), R11
CMP $0, R11
B.EQ fallback
@@ -278,7 +278,7 @@ noswitch:
MOVW $CLOCK_MONOTONIC, R0
MOVW $8(R13), R1 // timespec
- MOVW runtime·__vdso_clock_gettime_sym(SB), R11
+ MOVW runtime·vdsoClockgettimeSym(SB), R11
CMP $0, R11
B.EQ fallback