summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/ThreadLocalStorage.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-23 00:59:31 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-23 01:04:00 +0100
commit77bf7cab39fef40797e8832aaef91abbdf0098f5 (patch)
tree157f6f82188c505f1333abf93aeda63b3373cf04 /Private/Source/ThreadLocalStorage.cxx
parent954285b6c9553a047d0789707ad520c84099e74a (diff)
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 <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/Source/ThreadLocalStorage.cxx')
-rw-r--r--Private/Source/ThreadLocalStorage.cxx6
1 files changed, 3 insertions, 3 deletions
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";
}