mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
10 lines
145 B
Odin
10 lines
145 B
Odin
//+build linux
|
|
//+private
|
|
package sync
|
|
|
|
import "core:sys/unix"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return unix.sys_gettid()
|
|
}
|