diff options
author | Benji Dial <benji@benjidial.net> | 2023-07-17 08:45:12 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2023-07-17 08:45:12 -0400 |
commit | 723437674e0002f7b0e2b727bc24ec3080ac069f (patch) | |
tree | 479f7cf01d4683ae31e50c8b49675d744526a70d /include | |
parent | fa874b73ff8bde0ceac9f4f29255d9d23fa79a1a (diff) | |
download | lib94-723437674e0002f7b0e2b727bc24ec3080ac069f.tar.gz |
add maximum process count
Diffstat (limited to 'include')
-rw-r--r-- | include/lib94/lib94.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/lib94/lib94.hpp b/include/lib94/lib94.hpp index cfbb978..c91c24b 100644 --- a/include/lib94/lib94.hpp +++ b/include/lib94/lib94.hpp @@ -12,6 +12,10 @@ #define LIB94_CORE_SIZE 8000 #endif +#ifndef LIB94_MAX_PROCESSES +#define LIB94_MAX_PROCESSES 16000 +#endif + namespace lib94 { //this type is used to represent values inside the core. |