1 #ifndef MEMORY_MANAGEMENT_H 2 #define MEMORY_MANAGEMENT_H void * mapPhysMemArea(uintptr_t areaBaseAddrPhys, size_t size)
Maps the specified physical memory area to a virtual memory area.
Definition: physMemoryManagement.cpp:22
int unmapPhysMemArea(void *areaBaseAddrVirt, size_t size)
Unmaps a physical memory area mapped using mapPhysMemArea()
Definition: physMemoryManagement.cpp:55