mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
16 lines
251 B
Odin
16 lines
251 B
Odin
//+build freebsd
|
|
//+private
|
|
package sync
|
|
|
|
import "core:c"
|
|
|
|
foreign import dl "system:dl"
|
|
|
|
foreign dl {
|
|
pthread_getthreadid_np :: proc "c" () -> c.int ---
|
|
}
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return int(pthread_getthreadid_np())
|
|
}
|