blob: 143fe39aa63e3d1959526beb168755e5140cbf2d [file] [log] [blame]
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package runtime
import "syscall/zx"
//go:nosplit
func cputicks() int64 {
return int64(zx.Sys_ticks_get())
}