diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-02-04 09:41:02 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-02-04 09:41:02 +0100 |
| commit | 73044afd9c61642b4c8217befa1ded3849685554 (patch) | |
| tree | 1a7cd9ad6a6f7ab5db46914fb3deaab49f9898a1 /dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc | |
| parent | f5b6f148a8c10673e3ef268d3fe76b31902c5930 (diff) | |
ADD: Important refactors regarding NeKernel.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc')
| -rw-r--r-- | dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc b/dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc index 42f2a147..602cafdd 100644 --- a/dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc +++ b/dev/Kernel/HALKit/AMD64/HalApplicationProcessor.cc @@ -217,7 +217,7 @@ namespace Kernel::HAL kSMPInterrupt = 0; kSMPCount = 0; - kcout << "SMP: Starting APs...\r"; + kout << "SMP: Starting APs...\r"; UInt32 eax, edx; kApicBaseAddress = kMADTBlock->Address; @@ -235,7 +235,7 @@ namespace Kernel::HAL break; kAPICLocales[kSMPCount] = kMADTBlock->List[kSMPCount].LAPIC.ProcessorID; - kcout << "SMP: APIC ID: " << number(kAPICLocales[kSMPCount]) << endl; + kout << "SMP: APIC ID: " << number(kAPICLocales[kSMPCount]) << endl; // I'll just make the AP start from scratch here. @@ -258,7 +258,7 @@ namespace Kernel::HAL ++index; } - kcout << "SMP: number of APs: " << number(kSMPCount) << endl; + kout << "SMP: number of APs: " << number(kSMPCount) << endl; // Kernel is now SMP aware. // That means that the scheduler is now available (on MP Kernels) |
