diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-31 09:47:51 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-31 09:47:51 +0200 |
| commit | 11034c004ee7b232e53d69e9f1ae9000f008285f (patch) | |
| tree | 40a011167c9dbfbfa998e71754ab8cb5a6bcfac2 /dev/kernel/ArchKit | |
| parent | d9c1f9ec143f02e66c0178557b76124b3e45a32d (diff) | |
feat: kernel: Revamped `SignalKit` framework. DDK revamp.
ci: testing improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/ArchKit')
| -rw-r--r-- | dev/kernel/ArchKit/ArchKit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/kernel/ArchKit/ArchKit.h b/dev/kernel/ArchKit/ArchKit.h index bc3447fc..2042bded 100644 --- a/dev/kernel/ArchKit/ArchKit.h +++ b/dev/kernel/ArchKit/ArchKit.h @@ -69,6 +69,7 @@ namespace HAL { typedef Kernel::Void (*rt_syscall_proc)(Kernel::VoidPtr); +/// @brief System Call Dispatch. struct HAL_DISPATCH_ENTRY final { Kernel::UInt64 fHash; Kernel::Bool fHooked; @@ -79,6 +80,7 @@ struct HAL_DISPATCH_ENTRY final { typedef Kernel::Void (*rt_kerncall_proc)(Kernel::SizeT, Kernel::VoidPtr, Kernel::SizeT); +/// @brief Kernel Call Dispatch. struct HAL_KERNEL_DISPATCH_ENTRY final { Kernel::UInt64 fHash; Kernel::Bool fHooked; |
