Files
Odin/core/sync/primitives_netbsd.odin
2024-06-05 11:06:14 +02:00

13 lines
192 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())
}