Files
Odin/core/sys/info/cpu_other.odin
Ignacy Koper 3e64a72bad removed Essence from supported targets
Signed-off-by: Ignacy Koper <ignacy423@gmail.com>
2026-04-27 11:10:48 +02:00

15 lines
326 B
Odin

#+build openbsd, freebsd, netbsd, haiku
package sysinfo
@(private)
_cpu_core_count :: proc "contextless" () -> (physical: int, logical: int, ok: bool) {
return 0, 0, false
}
when ODIN_ARCH == .arm32 || ODIN_ARCH == .arm64 {
@(private)
_cpu_features :: proc "contextless" () -> (features: CPU_Features) {
return {}
}
}