| 22 | void removeLocks() { storage::SharedMonitor<storage::SharedRegionRegister>::remove(); } |
| 23 | |
| 24 | void deleteRegion(const storage::ProjID proj_id) |
| 25 | { |
| 26 | if (storage::RegionExists(proj_id) && !storage::Remove(proj_id)) |
| 27 | { |
| 28 | util::Log(logWARNING) << "could not delete shared memory region " |
| 29 | << static_cast<int>(proj_id); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | void listRegions(bool show_blocks) |
| 34 | { |
no test coverage detected