mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-05 05:38:31 +00:00
13 lines
261 B
Odin
13 lines
261 B
Odin
#+private
|
|
#+build !darwin
|
|
#+build !freebsd
|
|
#+build !linux
|
|
#+build !netbsd
|
|
#+build !openbsd
|
|
#+build !windows
|
|
package runtime
|
|
|
|
_get_current_thread_id :: proc "contextless" () -> int {
|
|
unimplemented_contextless("This platform does not support multithreading.")
|
|
}
|