Files
Odin/core/sync/primitives_netbsd.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())
}