1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

Kernel: Reduce header dependencies of Process and Thread

This commit is contained in:
Andreas Kling 2020-02-16 02:01:42 +01:00
parent e61cdf5c39
commit 16818322c5
5 changed files with 14 additions and 8 deletions

View file

@ -26,13 +26,10 @@
#pragma once
#include <AK/Atomic.h>
#include <AK/Function.h>
#include <AK/HashTable.h>
#include <AK/IntrusiveList.h>
#include <AK/Optional.h>
#include <AK/OwnPtr.h>
#include <AK/RefPtr.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <Kernel/Arch/i386/CPU.h>