1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress.

This commit is contained in:
Andreas Kling 2019-04-06 14:29:29 +02:00
parent 6306cf5c27
commit a58d7fd8bb
27 changed files with 119 additions and 121 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#include "types.h"
#include <AK/Types.h>
#include "i386.h"
#include <AK/Bitmap.h>
#include <AK/ByteBuffer.h>
@ -11,6 +11,7 @@
#include <AK/AKString.h>
#include <AK/Badge.h>
#include <AK/Weakable.h>
#include <Kernel/LinearAddress.h>
#include <Kernel/VM/PhysicalPage.h>
#include <Kernel/VM/Region.h>
#include <Kernel/VM/VMObject.h>

View file

@ -1,7 +1,7 @@
#pragma once
#include <Kernel/Assertions.h>
#include <Kernel/types.h>
#include <Kernel/PhysicalAddress.h>
#include <AK/Retained.h>
class PhysicalPage {

View file

@ -7,6 +7,8 @@
#include <AK/Vector.h>
#include <AK/AKString.h>
#include <Kernel/Lock.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/UnixTypes.h>
class Inode;
class PhysicalPage;