summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/KernelKit/ThreadLocalStorage.h
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-11-23 08:44:49 +0100
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-11-23 08:44:49 +0100
commitd2d6b4cb728e3e80c10d6e3bbd72e6f7b3dfea9b (patch)
treee89d365c779deee749136f6373e4759df160453f /dev/ZKAKit/KernelKit/ThreadLocalStorage.h
parent083b0ee668f217ddc0462d5d7b62d53bc1a2756b (diff)
META: Morning bump.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/KernelKit/ThreadLocalStorage.h')
-rw-r--r--dev/ZKAKit/KernelKit/ThreadLocalStorage.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZKAKit/KernelKit/ThreadLocalStorage.h b/dev/ZKAKit/KernelKit/ThreadLocalStorage.h
index 680a10ed..808951a2 100644
--- a/dev/ZKAKit/KernelKit/ThreadLocalStorage.h
+++ b/dev/ZKAKit/KernelKit/ThreadLocalStorage.h
@@ -4,8 +4,8 @@
------------------------------------------- */
-#ifndef _KERNELKIT_TLS_H
-#define _KERNELKIT_TLS_H
+#ifndef KERNELKIT_TLS_H
+#define KERNELKIT_TLS_H
#include <NewKit/Defines.h>
@@ -23,8 +23,8 @@ struct THREAD_INFORMATION_BLOCK;
/// Located in GS on AMD64, other architectures have their own stuff. (64x0, 32x0, ARM64)
struct PACKED THREAD_INFORMATION_BLOCK final
{
- Kernel::Char f_Cookie[kTLSCookieLen]{0}; //! Thread magic number.
- Kernel::VoidPtr f_ThreadRecord{nullptr}; //! Thread information record.
+ Kernel::Char Cookie[kTLSCookieLen]{0}; //! Thread magic number.
+ Kernel::VoidPtr Record{nullptr}; //! Thread information record.
};
///! @brief Cookie Sanity check.
@@ -51,4 +51,4 @@ EXTERN_C Kernel::Bool tls_check_syscall_impl(Kernel::VoidPtr TIB) noexcept;
// last rev 7/7/24
-#endif /* ifndef _KERNELKIT_TLS_H */
+#endif /* ifndef KERNELKIT_TLS_H */