diff options
Diffstat (limited to 'src/runtime/os_aix.go')
| -rw-r--r-- | src/runtime/os_aix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/os_aix.go b/src/runtime/os_aix.go index 557b17cc75..4fb1c8e845 100644 --- a/src/runtime/os_aix.go +++ b/src/runtime/os_aix.go @@ -336,7 +336,7 @@ func nanotime1() int64 { return tp.tv_sec*1000000000 + tp.tv_nsec } -func walltime1() (sec int64, nsec int32) { +func walltime() (sec int64, nsec int32) { ts := ×pec{} if clock_gettime(_CLOCK_REALTIME, ts) != 0 { throw("syscall clock_gettime failed") |
