1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

Kernel: Move task-crash related code to the Tasks subdirectory

This commit is contained in:
Liav A 2023-02-24 20:00:03 +02:00 committed by Jelle Raaijmakers
parent ee0ccdaebe
commit f1cbfc5a6e
7 changed files with 6 additions and 6 deletions

View file

@ -10,11 +10,11 @@
#include <AK/Time.h>
#include <AK/Types.h>
#include <Kernel/API/Syscall.h>
#include <Kernel/Coredump.h>
#include <Kernel/Debug.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/InterruptDisabler.h>
#include <Kernel/Security/Credentials.h>
#include <Kernel/Tasks/Coredump.h>
#ifdef ENABLE_KERNEL_COVERAGE_COLLECTION
# include <Kernel/Devices/KCOVDevice.h>
#endif