Implement MmAllocateProcessorStructures() routine as a temporary hack to get a buffer for AP initialization

This commit is contained in:
2024-05-07 23:30:11 +02:00
parent 8d6d27651c
commit b65ff2a767
6 changed files with 85 additions and 0 deletions

View File

@@ -26,3 +26,6 @@ LOADER_MEMORY_MAPPING MmOldFreeDescriptor;
/* Page Map Level */
ULONG MmPageMapLevel;
/* Processor structures data (THIS IS A TEMPORARY HACK) */
UCHAR MmProcessorStructuresData[MAXIMUM_PROCESSORS - 1][KPROCESSOR_STRUCTURES_SIZE] = {0};