Add support for Symmetric Multiprocessing (SMP) #26

Merged
harraiken merged 33 commits from smp into master 2026-05-18 18:44:54 +02:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 63d18aad1e - Show all commits

View File

@@ -430,6 +430,7 @@ typedef VOID (*PINTERRUPT_HANDLER)(PKTRAP_FRAME TrapFrame);
/* Processor identification information */ /* Processor identification information */
typedef struct _CPU_IDENTIFICATION typedef struct _CPU_IDENTIFICATION
{ {
ULONGLONG ExtendedFeatureBits;
USHORT Family; USHORT Family;
ULONGLONG FeatureBits; ULONGLONG FeatureBits;
USHORT Model; USHORT Model;

View File

@@ -395,6 +395,7 @@ typedef VOID (*PINTERRUPT_HANDLER)(PKTRAP_FRAME TrapFrame);
/* Processor identification information */ /* Processor identification information */
typedef struct _CPU_IDENTIFICATION typedef struct _CPU_IDENTIFICATION
{ {
ULONGLONG ExtendedFeatureBits;
USHORT Family; USHORT Family;
ULONGLONG FeatureBits; ULONGLONG FeatureBits;
USHORT Model; USHORT Model;