From 375d0210dcb2070a12d916523f4a1dafff28360c Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Tue, 2 Jul 2024 22:00:35 +0200 Subject: MHR-36: Change namespace name, got out of the codename stage. Signed-off-by: Amlal EL Mahrouss --- Kernel/Sources/ThreadLocalStorage.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Kernel/Sources/ThreadLocalStorage.cxx') 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; -- cgit v1.2.3