summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/ThreadLocalStorage.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-31 22:27:28 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-31 22:32:59 +0200
commit3c4efadf68e2071429925ea7f90f73341200a42f (patch)
treefa3b3faa39aca899330d6823f16a6cb66371286d /Private/Source/ThreadLocalStorage.cxx
parentbdd680f31ac1b23f5ad9baea60d01f6860e02575 (diff)
Kernel: Improve Drive Manager regarding the NewFS support.
HCFS is also planned, HCFS is a filesystem made for mass media storages. 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 9ee6a4be..20f9d337 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 << "NewKernel.exe: Checking for a valid cookie...\n";
+ kcout << "NewOS: 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(NewOS::HAL::StackFramePtr stackPtr) noexcep
ThreadInformationBlock* tib = (ThreadInformationBlock*)stackPtr->Gs;
if (!tls_check_tib(tib)) {
- kcout << "NewKernel.exe: Verification failed, Crashing...\n";
+ kcout << "NewOS: Verification failed, Crashing...\n";
ProcessScheduler::Shared().Leak().GetCurrent().Leak().Crash();
}
- kcout << "NewKernel.exe: Verification succeeded! Keeping on...\n";
+ kcout << "NewOS: Verification succeeded! Keeping on...\n";
}