mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-05 21:58:31 +00:00
12 lines
215 B
Odin
12 lines
215 B
Odin
#+private
|
|
package runtime
|
|
|
|
import "base:intrinsics"
|
|
|
|
SYS__lwp_self :: uintptr(311)
|
|
|
|
_get_current_thread_id :: proc "contextless" () -> int {
|
|
result, _ := intrinsics.syscall_bsd(SYS__lwp_self)
|
|
return int(result)
|
|
}
|