summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/ThreadLocalStorage.cxx
diff options
context:
space:
mode:
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 c75c1c5a..9ee6a4be 100644
--- a/Private/Source/ThreadLocalStorage.cxx
+++ b/Private/Source/ThreadLocalStorage.cxx
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * HCore
+ * NewOS
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
@@ -17,7 +17,7 @@
/// @brief TLS implementation in kernel.
/***********************************************************************************/
-using namespace HCore;
+using namespace NewOS;
/**
* Check for cookie inside TIB.
@@ -42,7 +42,7 @@ Boolean tls_check_tib(ThreadInformationBlock* tib) {
* @param ptr
* @return
*/
-EXTERN_C Void tls_check_syscall_impl(HCore::HAL::StackFramePtr stackPtr) noexcept {
+EXTERN_C Void tls_check_syscall_impl(NewOS::HAL::StackFramePtr stackPtr) noexcept {
ThreadInformationBlock* tib = (ThreadInformationBlock*)stackPtr->Gs;
if (!tls_check_tib(tib)) {