Update os_haiku.odin

This commit is contained in:
avanspector
2024-02-26 06:16:13 +01:00
parent 8c621453ae
commit 31d7ef5696
+3 -1
View File
@@ -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)
}