Update MemoryManagement.cpp

Add newline and fix title case and spacing
This commit is contained in:
Derek "Turtle" Roe 2021-03-16 17:52:14 -05:00
parent 10d8fe0acb
commit 7d24276bb2
1 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ void* AllocateAddressSpace(size_t size, void * base_address)
bool FreeAddressSpace(void* addr, size_t size)
{
#ifdef _WIN32
size = 0; //unused
size = 0; // Unused
return VirtualFree(addr, 0, MEM_RELEASE) != 0;
#else
msync(addr, size, MS_SYNC);
@ -96,7 +96,7 @@ bool DecommitMemory(void* addr, size_t size)
#ifdef _WIN32
return VirtualFree((void*)addr, size, MEM_DECOMMIT) != 0;
#else
// instead of unmapping the address, we're just gonna trick
// Instead of unmapping the address, we're just gonna trick
// the TLB to mark this as a new mapped area which, due to
// demand paging, will not be committed until used.
@ -129,4 +129,4 @@ bool ProtectMemory(void* addr, size_t size, MEM_PROTECTION memProtection, MEM_PR
#else
return mprotect(addr, size, OsMemProtection) == 0;
#endif
}
}