mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
11 lines
185 B
Odin
11 lines
185 B
Odin
//+build linux
|
|
//+private
|
|
package sync2
|
|
|
|
import "core:intrinsics"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
SYS_GETTID :: 186
|
|
return int(intrinsics.syscall(SYS_GETTID))
|
|
}
|