mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07: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()
|
|
}
|