summaryrefslogtreecommitdiff
path: root/Kernel/Scheduler.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-16 01:27:42 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-16 01:27:42 +0100
commita356e4815098e5398e103aa69865bd6c88f7ad36 (patch)
tree50437c6444405f12671bce7f04a8c1b10cff70f8 /Kernel/Scheduler.h
parentd42f0f46616168bdff492f880b3ea432a49f7345 (diff)
downloadserenity-a356e4815098e5398e103aa69865bd6c88f7ad36.zip
Kernel: Move all code into the Kernel namespace
Diffstat (limited to 'Kernel/Scheduler.h')
-rw-r--r--Kernel/Scheduler.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Kernel/Scheduler.h b/Kernel/Scheduler.h
index 6ce96f33a8..e52bc4ab56 100644
--- a/Kernel/Scheduler.h
+++ b/Kernel/Scheduler.h
@@ -27,9 +27,11 @@
#pragma once
#include <AK/Assertions.h>
-#include <AK/Types.h>
#include <AK/Function.h>
#include <AK/IntrusiveList.h>
+#include <AK/Types.h>
+
+namespace Kernel {
class Process;
class Thread;
@@ -74,3 +76,5 @@ public:
private:
static void prepare_for_iret_to_new_process();
};
+
+}