diff options
author | Andreas Kling <kling@serenityos.org> | 2020-09-24 10:49:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-24 10:49:43 +0200 |
commit | b99eaad6935c1c3082e9298bc02967750fe06459 (patch) | |
tree | 6e5cd623e4f1cc4e4880d18573f954ec17d31f9e /Kernel/Process.cpp | |
parent | 96fc476107826fa150237f070b5b1012f186cb09 (diff) | |
download | serenity-b99eaad6935c1c3082e9298bc02967750fe06459.zip |
Kernel: Remove a whole bunch of unnecessary includes in Process.cpp
Diffstat (limited to 'Kernel/Process.cpp')
-rw-r--r-- | Kernel/Process.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index 5e1348b07a..2f640236f8 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -26,58 +26,31 @@ #include <AK/Demangle.h> #include <AK/QuickSort.h> -#include <AK/RefPtr.h> -#include <AK/ScopeGuard.h> -#include <AK/ScopedValueRollback.h> #include <AK/StdLibExtras.h> #include <AK/StringBuilder.h> #include <AK/Time.h> #include <AK/Types.h> -#include <Kernel/ACPI/Parser.h> #include <Kernel/API/Syscall.h> #include <Kernel/Arch/i386/CPU.h> -#include <Kernel/Console.h> -#include <Kernel/Devices/BlockDevice.h> -#include <Kernel/Devices/KeyboardDevice.h> #include <Kernel/Devices/NullDevice.h> #include <Kernel/FileSystem/Custody.h> -#include <Kernel/FileSystem/DevPtsFS.h> -#include <Kernel/FileSystem/Ext2FileSystem.h> -#include <Kernel/FileSystem/FIFO.h> #include <Kernel/FileSystem/FileDescription.h> -#include <Kernel/FileSystem/InodeWatcher.h> -#include <Kernel/FileSystem/Plan9FileSystem.h> -#include <Kernel/FileSystem/ProcFS.h> -#include <Kernel/FileSystem/TmpFS.h> #include <Kernel/FileSystem/VirtualFileSystem.h> #include <Kernel/Heap/kmalloc.h> -#include <Kernel/IO.h> #include <Kernel/KBufferBuilder.h> #include <Kernel/KSyms.h> #include <Kernel/Module.h> -#include <Kernel/Multiboot.h> #include <Kernel/PerformanceEventBuffer.h> #include <Kernel/Process.h> -#include <Kernel/RTC.h> -#include <Kernel/Scheduler.h> #include <Kernel/SharedBuffer.h> #include <Kernel/StdLib.h> -#include <Kernel/TTY/MasterPTY.h> #include <Kernel/TTY/TTY.h> #include <Kernel/Thread.h> -#include <Kernel/ThreadTracer.h> -#include <Kernel/Time/TimeManagement.h> #include <Kernel/VM/PageDirectory.h> -#include <Kernel/VM/PrivateInodeVMObject.h> -#include <Kernel/VM/ProcessPagingScope.h> -#include <Kernel/VM/PurgeableVMObject.h> #include <Kernel/VM/SharedInodeVMObject.h> #include <LibC/errno_numbers.h> #include <LibC/limits.h> -#include <LibC/signal_numbers.h> #include <LibELF/Loader.h> -#include <LibELF/Validation.h> -#include <LibKeyboard/CharacterMapData.h> //#define DEBUG_IO //#define DEBUG_POLL_SELECT |