/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Base/cpucount.cpp
17 строк
336 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#include "CPUCount.h" #if defined (_WIN32) # include <thread> #else # include "rbx/SystemUtil.h" #endif unsigned int RbxTotalUsableCoreCount(unsigned int defaultValue) { #ifdef _WIN32 unsigned n = std::thread::hardware_concurrency(); return n ? n : defaultValue; #else return RBX::SystemUtil::getCPUCoreCount(); #endif }