We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f377d commit acea9d7Copy full SHA for acea9d7
test/test.h
@@ -90,7 +90,7 @@ inline static thread_pool & reader() {
90
91
#ifdef IPC_OS_LINUX_
92
inline bool check_exist(char const *name) noexcept {
93
- int fd = ::open((std::string{"/dev/shm/__IPC_SHM__"} + name).c_str(), O_RDONLY);
+ int fd = ::open((std::string{"/dev/shm/"} + name).c_str(), O_RDONLY);
94
if (fd == -1) {
95
return false;
96
}
0 commit comments