SWDEV-543340 - Remove shared memory objects after IPC event cleanup (#745)
This change ensures that shared memory objects (e.g., files in /dev/shm) are unlinked once all related IPC events have been destroyed.
This commit is contained in:
committed by
GitHub
parent
42730527c6
commit
dc34af61d7
@@ -650,6 +650,7 @@ std::string Os::getTempFileName() {
|
||||
}
|
||||
|
||||
int Os::unlink(const std::string& path) { return ::unlink(path.c_str()); }
|
||||
int Os::shm_unlink(const std::string& path) { return ::shm_unlink(path.c_str()); }
|
||||
|
||||
#if defined(ATI_ARCH_X86)
|
||||
void Os::cpuid(int regs[4], int info) {
|
||||
|
||||
Reference in New Issue
Block a user