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

Kernel: Move Kernel/Arch/x86/SafeMem.h to Kernel/Arch/SafeMem.h

The file does not contain any specific architectural code, thus it can
be moved to the Kernel/Arch directory.
This commit is contained in:
Timon Kruiper 2022-05-02 22:46:43 +02:00 committed by Andreas Kling
parent 267febae55
commit feba7bc8a8
10 changed files with 9 additions and 9 deletions

View file

@ -7,8 +7,8 @@
#include <AK/Assertions.h>
#include <AK/MemMem.h>
#include <AK/Types.h>
#include <Kernel/Arch/SafeMem.h>
#include <Kernel/Arch/SmapDisabler.h>
#include <Kernel/Arch/x86/SafeMem.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/StdLib.h>