mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 11:42:28 +00:00
9 lines
142 B
Odin
9 lines
142 B
Odin
//+private
|
|
package sync
|
|
|
|
import "core:sys/unix"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return cast(int) unix.pthread_self()
|
|
}
|