mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
10 lines
146 B
Odin
10 lines
146 B
Odin
//+build openbsd
|
|
//+private
|
|
package sync
|
|
|
|
import "core:os"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return os.current_thread_id()
|
|
}
|