From 815ac22d249b04322f61c3bd8e661d74f0b15155 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 24 Jan 2026 11:16:07 +0100 Subject: chore: Fix CI linker error. Signed-off-by: Amlal El Mahrouss --- src/kernel/src/ThreadLocalStorage.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/kernel') diff --git a/src/kernel/src/ThreadLocalStorage.cc b/src/kernel/src/ThreadLocalStorage.cc index 4ed20ce5..aad7b9a5 100644 --- a/src/kernel/src/ThreadLocalStorage.cc +++ b/src/kernel/src/ThreadLocalStorage.cc @@ -14,8 +14,8 @@ ///! @author Amlal El Mahrouss (amlal@nekernel.org) /***********************************************************************************/ -using namespace Kernel; - +namespace Kernel { + /** * @brief Checks for cookie inside the TIB. * @param tib_ptr the TIB to check. @@ -31,6 +31,8 @@ Boolean tls_check_tib(THREAD_INFORMATION_BLOCK* tib_ptr) { tib_ptr->Cookie[kCookieMag2Idx] == kCookieMag2; } +} // namespace Kernel + /** * @brief System call implementation of the TLS check. * @param tib_ptr The TIB record. -- cgit v1.2.3