[llvm] [Support] Prevent leaking unique lock files (PR #130984)
Jan Svoboda via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 13:10:11 PDT 2025
================
@@ -189,6 +189,10 @@ Expected<bool> LockFileManager::tryLock() {
return createStringError(EC, "failed to create unique file " +
UniqueLockFileName);
+ // Clean up the unique file on signal or scope exit. This also releases the
+ // lock if it's held since the .lock symlink will point to a nonexistent file.
----------------
jansvoboda11 wrote:
Good observation. I'll remove the second sentence before landing.
https://github.com/llvm/llvm-project/pull/130984
More information about the llvm-commits
mailing list