mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-01 19:02:13 +00:00
9 lines
140 B
Odin
9 lines
140 B
Odin
#+private
|
|
package sync
|
|
|
|
import "core:sys/haiku"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return int(haiku.find_thread(nil))
|
|
}
|