summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/KernelKit/Semaphore.hxx
diff options
context:
space:
mode:
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