blob: 2ffb2c0fcc6e78831613c9da529ead237c68f27b [file] [log] [blame]
// Copyright 2021 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 zx
import (
_ "unsafe" // go:linkname
)
//go:linkname getThreadKoid runtime.getThreadKoid
func getThreadKoid() uint64
//go:nosplit
func GetCurrentThreadKoid() uint64 {
return getThreadKoid()
}