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

Kernel: Move VM-related files into Kernel/VM/.

Also break MemoryManager.{cpp,h} into one file per class.
This commit is contained in:
Andreas Kling 2019-04-03 15:13:07 +02:00
parent 39fd81174e
commit b9738fa8ac
21 changed files with 630 additions and 575 deletions

View file

@ -2,7 +2,7 @@
#include <Kernel/Scheduler.h>
#include <Kernel/system.h>
#include <Kernel/Process.h>
#include <Kernel/MemoryManager.h>
#include <Kernel/VM/MemoryManager.h>
#include <LibC/signal_numbers.h>
InlineLinkedList<Thread>* g_threads;