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

Kernel: Remove ThreadTracer.h include from Process.h / Thread.h

This isn't needed for Process / Thread as they only reference it
by pointer and it's already part of Kernel/Forward.h. So just include
it where the implementation needs to call it.
This commit is contained in:
Brian Gianforcaro 2021-07-31 01:06:13 -07:00 committed by Gunnar Beutner
parent 44e992429f
commit 0fc853f5ba
5 changed files with 3 additions and 2 deletions

View file

@ -28,7 +28,6 @@
#include <Kernel/KResult.h>
#include <Kernel/LockMode.h>
#include <Kernel/Scheduler.h>
#include <Kernel/ThreadTracer.h>
#include <Kernel/TimerQueue.h>
#include <Kernel/UnixTypes.h>
#include <Kernel/VM/Range.h>