Chroma/inc/kernel/constants.hpp
2022-02-17 02:03:05 +00:00

15 lines
268 B
C++

#pragma once
#include <stdint.h>
/************************
*** Team Kitty, 2021 ***
*** Chroma ***
***********************/
namespace Constants {
namespace Core {
const size_t STACK_SIZE = 65536;
const size_t MAX_CORES = 12;
}
}