MemArena: Rename GrabLowMemSpace to GrabSHMSegment

This code originally tried to map the "low space" for the Gamecube's
memory layout, but since has expanded to mapping all of the easily
mappable memory on the system. Change the name to "GrabSHMSegment" to
indicate that we're looking for a shared memory segment we can map into
our process space.
This commit is contained in:
Jasper St. Pierre
2014-11-01 13:30:14 -07:00
parent 079b881d20
commit 1e93b0db19
3 changed files with 7 additions and 7 deletions

View File

@ -19,8 +19,8 @@
class MemArena
{
public:
void GrabLowMemSpace(size_t size);
void ReleaseSpace();
void GrabSHMSegment(size_t size);
void ReleaseSHMSegment();
void *CreateView(s64 offset, size_t size, void *base = nullptr);
void ReleaseView(void *view, size_t size);