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