diff --git a/core/os/os_haiku.odin b/core/os/os_haiku.odin index ad98f05ba..e29d004b6 100644 --- a/core/os/os_haiku.odin +++ b/core/os/os_haiku.odin @@ -424,5 +424,7 @@ get_env :: proc(key: string, allocator := context.allocator) -> (value: string) @(private) _processor_core_count :: proc() -> int { - return int(_sysconf(_SC_NPROCESSORS_ONLN)) + info: haiku.system_info + haiku.get_system_info(&info) + return int(info.cpu_count) }