| 133 | } |
| 134 | |
| 135 | void UnlockDirectory(const fs::path& directory, const std::string& lockfile_name) |
| 136 | { |
| 137 | LOCK(cs_dir_locks); |
| 138 | dir_locks.erase(fs::PathToString(directory / lockfile_name)); |
| 139 | } |
| 140 | |
| 141 | void ReleaseDirectoryLocks() |
| 142 | { |
no test coverage detected