mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 12:48:14 +00:00
11 lines
165 B
Odin
11 lines
165 B
Odin
//+build freebsd
|
|
//+private
|
|
package sync
|
|
|
|
import "core:os"
|
|
import "core:time"
|
|
|
|
_current_thread_id :: proc "contextless" () -> int {
|
|
return os.current_thread_id()
|
|
}
|