From 77bf7cab39fef40797e8832aaef91abbdf0098f5 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 23 Mar 2024 00:59:31 +0100 Subject: Kernel and Bootloader: See below. Kernel: Add kPefArchPowerPC type. Kernel: Working on NewFS support for NewKernel. Kernel: Cleaned-up DriveManager. Kernel: Use kernel mouse on install mode. Bootloader: Refactor and cleanup. FirmwareKit: Fix EPM header. Signed-off-by: Amlal El Mahrouss --- Private/Source/ThreadLocalStorage.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Private/Source/ThreadLocalStorage.cxx') diff --git a/Private/Source/ThreadLocalStorage.cxx b/Private/Source/ThreadLocalStorage.cxx index ab3b8383..45a52e46 100644 --- a/Private/Source/ThreadLocalStorage.cxx +++ b/Private/Source/ThreadLocalStorage.cxx @@ -31,7 +31,7 @@ Boolean tls_check_tib(ThreadInformationBlock* tib) { Encoder encoder; const char* tibAsBytes = encoder.AsBytes(tib); - kcout << "HCoreKrnl\\TLS: Checking for a valid cookie...\n"; + kcout << "NewKernel.exe: Checking for a valid cookie...\n"; return tibAsBytes[0] == kCookieMag0 && tibAsBytes[1] == kCookieMag1 && tibAsBytes[2] == kCookieMag2; @@ -46,9 +46,9 @@ EXTERN_C Void tls_check_syscall_impl(HCore::HAL::StackFramePtr stackPtr) noexcep ThreadInformationBlock* tib = (ThreadInformationBlock*)stackPtr->Gs; if (!tls_check_tib(tib)) { - kcout << "HCoreKrnl\\TLS: Verification failed, Crashing...\n"; + kcout << "NewKernel.exe: Verification failed, Crashing...\n"; ProcessManager::Shared().Leak().GetCurrent().Leak().Crash(); } - kcout << "HCoreKrnl\\TLS: Verification succeeded! Keeping on...\n"; + kcout << "NewKernel.exe: Verification succeeded! Keeping on...\n"; } -- cgit v1.2.3