Skip to content

Commit

Permalink
Update MemoryManagement.cpp
Browse files Browse the repository at this point in the history
Add newline and fix title case and spacing
  • Loading branch information
DerekTurtleRoe committed Mar 18, 2021
1 parent 10d8fe0 commit 7d24276
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Common/MemoryManagement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -129,4 +129,4 @@ bool ProtectMemory(void* addr, size_t size, MEM_PROTECTION memProtection, MEM_PR
#else
return mprotect(addr, size, OsMemProtection) == 0;
#endif
}
}

0 comments on commit 7d24276

Please sign in to comment.