mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 02:28:51 +00:00
MemArena: Keep fastmem region mapped on Linux.
This commit is contained in:
parent
eba19988cf
commit
ffbe6cb21f
2 changed files with 32 additions and 11 deletions
|
@ -113,7 +113,13 @@ private:
|
|||
void* m_address_VirtualAlloc2 = nullptr;
|
||||
void* m_address_MapViewOfFile3 = nullptr;
|
||||
#else
|
||||
#ifdef ANDROID
|
||||
int fd;
|
||||
#else
|
||||
int m_shm_fd;
|
||||
void* m_reserved_region;
|
||||
std::size_t m_reserved_region_size;
|
||||
#endif
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue