[1/7] Preprocessor cleanup
[official-gcc.git] / libgo / go / runtime / timestub.go
blob9f1d111f4fd822b346da0b71684a76ae5d4afbaf
1 // Copyright 2017 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // Declarations for operating systems implementing time.now
6 // indirectly, in terms of walltime and nanotime assembly.
8 // -build !windows
10 package runtime
12 import _ "unsafe" // for go:linkname
14 //go:linkname time_now time.now
15 func time_now() (sec int64, nsec int32, mono int64) {
16 sec, nsec = walltime()
17 return sec, nsec, nanotime() - startNano