| 206 | namespace { |
| 207 | |
| 208 | bool removeSegByName(bool posix, const std::string& uniqueName) { |
| 209 | return posix ? PosixShmSegment::removeByName(uniqueName) |
| 210 | : SysVShmSegment::removeByName(uniqueName); |
| 211 | } |
| 212 | |
| 213 | } // namespace |
| 214 |
no outgoing calls
no test coverage detected