mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
13 lines
191 B
Odin
13 lines
191 B
Odin
#+private
|
|
package sync
|
|
|
|
foreign import libc "system:c"
|
|
|
|
foreign libc {
|
|
_lwp_self :: proc "c" () -> i32 ---
|
|
}
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return int(_lwp_self())
|
|
}
|