diff options
| author | Austin Clements <austin@google.com> | 2019-09-01 10:37:44 -0400 |
|---|---|---|
| committer | Austin Clements <austin@google.com> | 2019-09-04 17:56:09 +0000 |
| commit | 4af3c17f8cd37288a5bb9bc53e8b88c58f5624d1 (patch) | |
| tree | 0d8dd44ab11f568977ca4521d896323fcd744c37 /src/runtime/sys_linux_mipsx.s | |
| parent | 6719d889e1a333989c6f461a66090d5583eeaedf (diff) | |
| download | go-4af3c17f8cd37288a5bb9bc53e8b88c58f5624d1.tar.xz | |
runtime: wrap nanotime, walltime, and write
In preparation for general faketime support, this renames the existing
nanotime, walltime, and write functions to nanotime1, walltime1, and
write1 and wraps them with trivial Go functions. This will let us
inject different implementations on all platforms when faketime is
enabled.
Updates #30439.
Change-Id: Ice5ccc513a32a6d89ea051638676d3ee05b00418
Reviewed-on: https://go-review.googlesource.com/c/go/+/192738
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/sys_linux_mipsx.s')
| -rw-r--r-- | src/runtime/sys_linux_mipsx.s | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/runtime/sys_linux_mipsx.s b/src/runtime/sys_linux_mipsx.s index 6e539fbc6f..30d962c325 100644 --- a/src/runtime/sys_linux_mipsx.s +++ b/src/runtime/sys_linux_mipsx.s @@ -86,7 +86,7 @@ TEXT runtime·closefd(SB),NOSPLIT,$0-8 MOVW R2, ret+4(FP) RET -TEXT runtime·write(SB),NOSPLIT,$0-16 +TEXT runtime·write1(SB),NOSPLIT,$0-16 MOVW fd+0(FP), R4 MOVW p+4(FP), R5 MOVW n+8(FP), R6 @@ -174,8 +174,8 @@ TEXT runtime·mincore(SB),NOSPLIT,$0-16 MOVW R2, ret+12(FP) RET -// func walltime() (sec int64, nsec int32) -TEXT runtime·walltime(SB),NOSPLIT,$8-12 +// func walltime1() (sec int64, nsec int32) +TEXT runtime·walltime1(SB),NOSPLIT,$8-12 MOVW $0, R4 // CLOCK_REALTIME MOVW $4(R29), R5 MOVW $SYS_clock_gettime, R2 @@ -193,7 +193,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$8-12 MOVW R5, nsec+8(FP) RET -TEXT runtime·nanotime(SB),NOSPLIT,$8-8 +TEXT runtime·nanotime1(SB),NOSPLIT,$8-8 MOVW $1, R4 // CLOCK_MONOTONIC MOVW $4(R29), R5 MOVW $SYS_clock_gettime, R2 |
