Changeset 81096 in vbox for trunk/src/VBox/Runtime/r3/win/mp-win.cpp
- Timestamp:
- Oct 1, 2019 7:29:03 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133707
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/mp-win.cpp
r76553 r81096 119 119 static uint32_t volatile g_cRtMpWinActiveCpus; 120 120 /** Static per group info. 121 * @remarks With RTCPUSET_MAX_CPUS as 256,this takes up 33KB.121 * @remarks With 256 entries this takes up 33KB. 122 122 * @sa g_aRtMpNtCpuGroups */ 123 123 static struct … … 129 129 /** CPU set indexes for each CPU in the group. */ 130 130 int16_t aidxCpuSetMembers[64]; 131 } g_aRtMpWinCpuGroups[ RTCPUSET_MAX_CPUS];131 } g_aRtMpWinCpuGroups[256]; 132 132 /** Maps CPU set indexes to RTCPUID. 133 133 * @sa g_aidRtMpNtByCpuSetIdx */ … … 193 193 SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX Info; 194 194 uint8_t abPaddingG[ sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX) 195 + sizeof(PROCESSOR_GROUP_INFO) * RTCPUSET_MAX_CPUS];195 + sizeof(PROCESSOR_GROUP_INFO) * 256]; 196 196 uint8_t abPaddingC[ sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX) 197 197 + (sizeof(PROCESSOR_RELATIONSHIP) + sizeof(GROUP_AFFINITY))
Note:
See TracChangeset
for help on using the changeset viewer.