From d218537836af849ada9b8ad6ef695e5340ee469b Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 7 Jul 2024 19:06:14 +0200 Subject: MHR-36: KernelDispatchCall.S: Add ARM64 support. Signed-off-by: Amlal El Mahrouss --- Kernel/KernelKit/ThreadLocalStorage.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Kernel/KernelKit/ThreadLocalStorage.hxx') diff --git a/Kernel/KernelKit/ThreadLocalStorage.hxx b/Kernel/KernelKit/ThreadLocalStorage.hxx index 50c53fa4..41313381 100644 --- a/Kernel/KernelKit/ThreadLocalStorage.hxx +++ b/Kernel/KernelKit/ThreadLocalStorage.hxx @@ -21,7 +21,7 @@ /// Located in GS on AMD64, other architectures have their own stuff. (64x0, 32x0, ARM64) struct PACKED ThreadInformationBlock final { - Kernel::Char Cookie[kTLSCookieLen]; + Kernel::Char Cookie[kTLSCookieLen]; // Process cookie. Kernel::UIntPtr StartCode; // Start Address Kernel::UIntPtr StartData; // Allocation Heap Kernel::UIntPtr StartStack; // Stack Pointer. @@ -39,7 +39,7 @@ T* tls_new_ptr(void); ///! @brief delete ptr syscall. template -bool tls_delete_ptr(T* ptr); +Kernel::Boolean tls_delete_ptr(T* ptr); template T* tls_new_class(Args&&... args); @@ -52,6 +52,6 @@ EXTERN_C Kernel::Void tls_check_syscall_impl(Kernel::VoidPtr TIB) noexcept; #include -// last rev 1/29/24 +// last rev 7/7/24 #endif /* ifndef _KERNELKIT_TLS_HPP */ -- cgit v1.2.3