Having the HHDM-based mapping allows us to more easily map data into non-resident processes.
8 lines
200 B
C
8 lines
200 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
void InitializePml4(uint64_t pml4_physical_addr);
|
|
|
|
void AllocatePageIfNecessary(uint64_t addr, uint64_t cr3 = 0);
|
|
void EnsureResident(uint64_t addr, uint64_t size);
|