summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/ThreadLocalStorage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Sources/ThreadLocalStorage.cxx')
-rw-r--r--Kernel/Sources/ThreadLocalStorage.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/Sources/ThreadLocalStorage.cxx b/Kernel/Sources/ThreadLocalStorage.cxx
index 904488c1..40a7a75f 100644
--- a/Kernel/Sources/ThreadLocalStorage.cxx
+++ b/Kernel/Sources/ThreadLocalStorage.cxx
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * NewOS
+ * Kernel
* Copyright Zeta Electronics Corporation, all rights reserved.
*
* ========================================================
@@ -17,7 +17,7 @@
/// @brief TLS implementation in kernel.
/***********************************************************************************/
-using namespace NewOS;
+using namespace Kernel;
/**
* @brief Check for cookie inside TIB.
@@ -44,7 +44,7 @@ Boolean tls_check_tib(ThreadInformationBlock* tib)
* @param stackPtr The call frame.
* @return
*/
-EXTERN_C Void tls_check_syscall_impl(NewOS::VoidPtr TIB) noexcept
+EXTERN_C Void tls_check_syscall_impl(Kernel::VoidPtr TIB) noexcept
{
if (!TIB)
return;