mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
10 lines
151 B
Odin
10 lines
151 B
Odin
#+build linux
|
|
#+private
|
|
package sync
|
|
|
|
import "core:sys/linux"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return cast(int) linux.gettid()
|
|
}
|