From 43bac17a2986ac2ea86e9d70c61268fa7e90ca4e Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Fri, 30 Aug 2024 20:46:01 +0200 Subject: Fixed many issues with the kernel, and refactored it. Signed-off-by: Amlal EL Mahrouss --- dev/ZKA/KernelKit/Semaphore.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/ZKA/KernelKit/Semaphore.hxx') diff --git a/dev/ZKA/KernelKit/Semaphore.hxx b/dev/ZKA/KernelKit/Semaphore.hxx index 7f6b2001..685b00a3 100644 --- a/dev/ZKA/KernelKit/Semaphore.hxx +++ b/dev/ZKA/KernelKit/Semaphore.hxx @@ -14,7 +14,7 @@ namespace Kernel { class PROCESS_HEADER_BLOCK; - typedef PROCESS_HEADER_BLOCK* ProcessHeaderRef; + typedef PROCESS_HEADER_BLOCK* PROCESS_HEADER_BLOCK_PTR; /// @brief Access control class, which locks a task until one is done. class Semaphore final @@ -38,6 +38,6 @@ namespace Kernel ZKA_COPY_DEFAULT(Semaphore); private: - ProcessHeaderRef fLockingProcess{nullptr}; + PROCESS_HEADER_BLOCK_PTR fLockingProcess{nullptr}; }; } // namespace Kernel -- cgit v1.2.3