summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/KernelKit/Semaphore.hxx
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-30 20:46:01 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-30 20:46:01 +0200
commit43bac17a2986ac2ea86e9d70c61268fa7e90ca4e (patch)
treed259814b8c388e87bb02860405ff668a92434c44 /dev/ZKA/KernelKit/Semaphore.hxx
parent8a4f0e988a901e4fce5d32e3d5f9dbdc5f309863 (diff)
Fixed many issues with the kernel, and refactored it.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/KernelKit/Semaphore.hxx')
-rw-r--r--dev/ZKA/KernelKit/Semaphore.hxx4
1 files changed, 2 insertions, 2 deletions
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