mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00: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()
|
|
}
|