2 issues is closed: - it also fixes spam in logs that maximum value 64 has been exceeded, and (AMD Threadreapers and modern 32 core cpu) have become more accessible - most software does not use all logical cores by default, and many server boards cannot fully run software
From: Herman Semenov germanaizek@yandex.ru
2 issues is closed - it also fixes spam in logs that maximum value 64 has been exceeded, and (AMD Threadreapers and modern 32 core cpu) have become more accessible - most software does not use all logical cores by default, and many server boards cannot fully run software --- include/winnt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/winnt.h b/include/winnt.h index e776312f922..5a5afa3d5ef 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -734,9 +734,9 @@ typedef DWORD FLONG; #define PROCESSOR_OPTIL 18767
#ifdef _WIN64 -#define MAXIMUM_PROCESSORS 64 +#define MAXIMUM_PROCESSORS 512 #else -#define MAXIMUM_PROCESSORS 32 +#define MAXIMUM_PROCESSORS 256 #endif
typedef struct _MEMORY_BASIC_INFORMATION
Nikolay Sivov (@nsivov) commented about include/winnt.h:
It's not something you can change, it's a public header.
You can't do that. You would need to implement processor groups.
This merge request was closed by Alexandre Julliard.