summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/KernelKit/CoreProcessScheduler.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-27 05:41:16 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-27 05:41:16 +0100
commit92e86a036219d31c56d12ba41adab51d62a26ecc (patch)
treec15a638ca24b0999677c4f17f977e3b542b58a98 /src/kernel/KernelKit/CoreProcessScheduler.h
parent4f65115434ca019d6a8c1b31fd360fffb36863f6 (diff)
chore: kernel, boot: updated sources copyright year and improve stability.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/KernelKit/CoreProcessScheduler.h')
-rw-r--r--src/kernel/KernelKit/CoreProcessScheduler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/KernelKit/CoreProcessScheduler.h b/src/kernel/KernelKit/CoreProcessScheduler.h
index a6f817f7..9b05d27d 100644
--- a/src/kernel/KernelKit/CoreProcessScheduler.h
+++ b/src/kernel/KernelKit/CoreProcessScheduler.h
@@ -48,7 +48,7 @@ enum struct TreeKind : UInt32 {
};
template <typename T>
-struct ProcessHeapTree {
+struct ProcessHeapTree final {
static constexpr auto kHeap = true;
static constexpr auto kFile = false;
static constexpr auto kSpecial = false;
@@ -67,7 +67,7 @@ struct ProcessHeapTree {
};
template <typename T>
-struct ProcessFileTree {
+struct ProcessFileTree final {
static constexpr auto kHeap = false;
static constexpr auto kFile = true;
static constexpr auto kSpecial = false;
@@ -88,7 +88,7 @@ struct ProcessFileTree {
};
template <typename T>
-struct ProcessSpecialTree {
+struct ProcessSpecialTree final {
static constexpr auto kHeap = false;
static constexpr auto kFile = false;
static constexpr auto kSpecial = true;