diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-24 11:16:07 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-24 11:16:07 +0100 |
| commit | 815ac22d249b04322f61c3bd8e661d74f0b15155 (patch) | |
| tree | dbe7b3faedf628d6537dea804208e002fca2be90 /src | |
| parent | 80e5ee82e9a73c483b1556c4abdd391b3f285762 (diff) | |
chore: Fix CI linker error.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/kernel/src/ThreadLocalStorage.cc | 6 |
1 files changed, 4 insertions, 2 deletions
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. |
