summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/KernelKit/BinaryMutex.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 02:50:07 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 02:52:34 +0100
commit4d192e629a07ae457134cb0063e0136e54b01008 (patch)
treeb933444d27c2b9ac22693e2e65bd294792c79d39 /src/kernel/KernelKit/BinaryMutex.h
parentf78c535aec66e02584e1b02995dc12c9e1bcb64c (diff)
chore: Codebase improvements and tweaks.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/KernelKit/BinaryMutex.h')
-rw-r--r--src/kernel/KernelKit/BinaryMutex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/KernelKit/BinaryMutex.h b/src/kernel/KernelKit/BinaryMutex.h
index f8a2898b..12dc7d15 100644
--- a/src/kernel/KernelKit/BinaryMutex.h
+++ b/src/kernel/KernelKit/BinaryMutex.h
@@ -11,12 +11,12 @@
#include <NeKit/Config.h>
namespace Kernel {
-class USER_PROCESS;
+class UserProcess;
/// @brief Access control class, which locks a task until one is done.
class BinaryMutex final {
public:
- using LockedPtr = USER_PROCESS*;
+ using LockedPtr = UserProcess*;
explicit BinaryMutex() = default;
~BinaryMutex() = default;