shuffle to private/public wrapper

This commit is contained in:
Colin Davidson
2023-01-06 13:33:47 -08:00
parent 50a2493fd3
commit 6ff2db47b4
7 changed files with 21 additions and 11 deletions
+4 -3
View File
@@ -706,9 +706,10 @@ get_page_size :: proc() -> int {
}
_SC_NPROCESSORS_ONLN :: 503
get_processor_thread_count :: proc() -> int {
thread_count := int(_sysconf(_SC_NPROCESSORS_ONLN))
return thread_count
@(private)
_processor_core_count :: proc() -> int {
return int(_sysconf(_SC_NPROCESSORS_ONLN))
}
_alloc_command_line_arguments :: proc() -> []string {