summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/KernelKit/KPC.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-23 08:32:09 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-23 08:32:09 +0100
commitca7b843f1c15dd479d287f93221cd23e74d94385 (patch)
tree2631513bc6485916076d848be02e868ead5e95ae /dev/kernel/KernelKit/KPC.h
parentcab7131a9eab7f06ba39260be477a1b4532705d8 (diff)
feat: new 'kErrorAccessDenied' type for semaphore api.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/KernelKit/KPC.h')
-rw-r--r--dev/kernel/KernelKit/KPC.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/kernel/KernelKit/KPC.h b/dev/kernel/KernelKit/KPC.h
index 836be458..b55d98fc 100644
--- a/dev/kernel/KernelKit/KPC.h
+++ b/dev/kernel/KernelKit/KPC.h
@@ -65,7 +65,8 @@ inline constexpr KPCError kErrorFileLocked = 64;
inline constexpr KPCError kErrorDiskIsTooTiny = 65;
inline constexpr KPCError kErrorDmaExhausted = 66;
inline constexpr KPCError kErrorOutOfBitMapMemory = 67;
-inline constexpr KPCError kErrorTimeout = 68;
+inline constexpr KPCError kErrorTimeout = 68;
+inline constexpr KPCError kErrorAccessDenied = 69;
/// Generic errors.
inline constexpr KPCError kErrorUnimplemented = -1;