memory: Make prototype parameter names match their definitions
Keeps the code consistent.
This commit is contained in:
parent
379b8c65b9
commit
8fa861c2c6
|
@ -182,9 +182,9 @@ PageTable* GetCurrentPageTable();
|
||||||
|
|
||||||
/// Determines if the given VAddr is valid for the specified process.
|
/// Determines if the given VAddr is valid for the specified process.
|
||||||
bool IsValidVirtualAddress(const Kernel::Process& process, VAddr vaddr);
|
bool IsValidVirtualAddress(const Kernel::Process& process, VAddr vaddr);
|
||||||
bool IsValidVirtualAddress(VAddr addr);
|
bool IsValidVirtualAddress(VAddr vaddr);
|
||||||
|
|
||||||
bool IsValidPhysicalAddress(PAddr addr);
|
bool IsValidPhysicalAddress(PAddr paddr);
|
||||||
|
|
||||||
u8 Read8(VAddr addr);
|
u8 Read8(VAddr addr);
|
||||||
u16 Read16(VAddr addr);
|
u16 Read16(VAddr addr);
|
||||||
|
@ -206,9 +206,9 @@ void ZeroBlock(VAddr dest_addr, const size_t size);
|
||||||
void CopyBlock(const Kernel::Process& process, VAddr dest_addr, VAddr src_addr, size_t size);
|
void CopyBlock(const Kernel::Process& process, VAddr dest_addr, VAddr src_addr, size_t size);
|
||||||
void CopyBlock(VAddr dest_addr, VAddr src_addr, size_t size);
|
void CopyBlock(VAddr dest_addr, VAddr src_addr, size_t size);
|
||||||
|
|
||||||
u8* GetPointer(VAddr virtual_address);
|
u8* GetPointer(VAddr vaddr);
|
||||||
|
|
||||||
std::string ReadCString(VAddr virtual_address, std::size_t max_length);
|
std::string ReadCString(VAddr vaddr, std::size_t max_length);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a virtual address inside a region with 1:1 mapping to physical memory to a physical
|
* Converts a virtual address inside a region with 1:1 mapping to physical memory to a physical
|
||||||
|
@ -227,7 +227,7 @@ PAddr VirtualToPhysicalAddress(VAddr addr);
|
||||||
/**
|
/**
|
||||||
* Undoes a mapping performed by VirtualToPhysicalAddress().
|
* Undoes a mapping performed by VirtualToPhysicalAddress().
|
||||||
*/
|
*/
|
||||||
boost::optional<VAddr> PhysicalToVirtualAddress(PAddr addr);
|
boost::optional<VAddr> PhysicalToVirtualAddress(PAddr paddr);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets a pointer to the memory region beginning at the specified physical address.
|
* Gets a pointer to the memory region beginning at the specified physical address.
|
||||||
|
|
Reference in New Issue