From: Bruno Cardoso Lopes Date: Sat, 18 Mar 2017 00:32:34 +0000 (+0000) Subject: [LockFileManager] Reduce lock timeout X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac657a19e04ab593ef820ad073ddf675e630f04e;p=llvm [LockFileManager] Reduce lock timeout Go back to behavior pre-r231309 and reduce the timeout from 8 to ~1.5 min now that we have (a) PCMCache mechanism (r298165) and (b) timeout that doesn't cause a failure, but actually build the module (r298175). rdar://problem/30297862 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298176 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/LockFileManager.cpp b/lib/Support/LockFileManager.cpp index 444aaa37c8c..8be9879fbc2 100644 --- a/lib/Support/LockFileManager.cpp +++ b/lib/Support/LockFileManager.cpp @@ -304,9 +304,9 @@ LockFileManager::WaitForUnlockResult LockFileManager::waitForUnlock() { Interval.tv_sec = 0; Interval.tv_nsec = 1000000; #endif - // Don't wait more than five minutes per iteration. Total timeout for the file - // to appear is ~8.5 mins. - const unsigned MaxSeconds = 5*60; + // Don't wait more than 40s per iteration. Total timeout for the file + // to appear is ~1.5 minutes. + const unsigned MaxSeconds = 40; do { // Sleep for the designated interval, to allow the owning process time to // finish up and remove the lock file.