Luna/kernel/include/memory/AddressSpace.h

19 lines
236 B
C
Raw Normal View History

2022-10-13 17:19:51 +00:00
#pragma once
#include "memory/Paging.h"
struct AddressSpace
{
static AddressSpace create();
void destroy();
void reset();
2022-10-13 17:19:51 +00:00
PageTable* get_pml4()
{
return m_pml4;
}
private:
PageTable* m_pml4;
};