Files
Odin/base/runtime/threading_other.odin
2025-05-08 11:06:00 -04:00

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.")
}