summaryrefslogtreecommitdiff
path: root/Kernel/Process.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-21 12:33:14 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-21 12:33:14 +0200
commita9d09e9020465e7baf7e727b4e933f25d1ce7aa5 (patch)
treed3e69b8888b974286111cad44de772f7cde784c3 /Kernel/Process.h
parent84f96c393c6d39908474202f10ea42cc569e0545 (diff)
downloadserenity-a9d09e9020465e7baf7e727b4e933f25d1ce7aa5.zip
Kernel: Get rid of the "cool globals" thingy.
This was something I used while debugging with Computron. I haven't needed it for months, so let's get rid of it. It's trivial to readd if needed.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r--Kernel/Process.h20
1 files changed, 5 insertions, 15 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 3029533852..90b0fc9108 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -1,15 +1,16 @@
#pragma once
#include <AK/Types.h>
-#include <Kernel/TTY/TTY.h>
-#include "Syscall.h"
-#include <Kernel/FileSystem/VirtualFileSystem.h>
-#include <Kernel/UnixTypes.h>
#include <AK/InlineLinkedList.h>
#include <AK/AKString.h>
#include <AK/Vector.h>
#include <AK/WeakPtr.h>
#include <AK/Weakable.h>
+#include <Kernel/FileSystem/VirtualFileSystem.h>
+#include <Kernel/TTY/TTY.h>
+#include <Kernel/Syscall.h>
+#include <Kernel/UnixTypes.h>
+
#include <Kernel/Thread.h>
#include <Kernel/Lock.h>
@@ -17,17 +18,6 @@ class FileDescriptor;
class PageDirectory;
class Region;
class VMObject;
-class Zone;
-class WSWindow;
-class GraphicsBitmap;
-
-#define COOL_GLOBALS
-#ifdef COOL_GLOBALS
-struct CoolGlobals {
- pid_t current_pid;
-};
-extern CoolGlobals* g_cool_globals;
-#endif
void kgettimeofday(timeval&);