mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 07:39:26 +01:00
Unlink shm file on close
This commit is contained in:
parent
d8d8b5a847
commit
1252eba1cc
@ -124,6 +124,9 @@ private:
|
|||||||
int m_shm_fd = 0;
|
int m_shm_fd = 0;
|
||||||
void* m_reserved_region = nullptr;
|
void* m_reserved_region = nullptr;
|
||||||
std::size_t m_reserved_region_size = 0;
|
std::size_t m_reserved_region_size = 0;
|
||||||
|
#ifndef ANDROID
|
||||||
|
std::string m_seg_name;
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ MemArena::~MemArena() = default;
|
|||||||
|
|
||||||
void MemArena::GrabSHMSegment(size_t size, std::string_view base_name)
|
void MemArena::GrabSHMSegment(size_t size, std::string_view base_name)
|
||||||
{
|
{
|
||||||
const std::string file_name = fmt::format("/{}.{}", base_name, getpid());
|
m_seg_name = fmt::format("/{}.{}", base_name, getpid());
|
||||||
m_shm_fd = shm_open(file_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600);
|
m_shm_fd = shm_open(m_seg_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600);
|
||||||
if (m_shm_fd == -1)
|
if (m_shm_fd == -1)
|
||||||
{
|
{
|
||||||
ERROR_LOG_FMT(MEMMAP, "shm_open failed: {}", strerror(errno));
|
ERROR_LOG_FMT(MEMMAP, "shm_open failed: {}", strerror(errno));
|
||||||
@ -43,6 +43,7 @@ void MemArena::GrabSHMSegment(size_t size, std::string_view base_name)
|
|||||||
|
|
||||||
void MemArena::ReleaseSHMSegment()
|
void MemArena::ReleaseSHMSegment()
|
||||||
{
|
{
|
||||||
|
shm_unlink(m_seg_name.c_str());
|
||||||
close(m_shm_fd);
|
close(m_shm_fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user