mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
16 lines
282 B
Odin
16 lines
282 B
Odin
#+build openbsd
|
|
#+private
|
|
package sync
|
|
|
|
foreign import libc "system:c"
|
|
|
|
@(default_calling_convention="c")
|
|
foreign libc {
|
|
@(link_name="getthrid", private="file")
|
|
_unix_getthrid :: proc() -> int ---
|
|
}
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return _unix_getthrid()
|
|
}
|