diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-29 19:57:03 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-29 19:57:03 +0000 |
commit | e1fbde55ddc033bc5aa8b8a69d01b16bc00b4a8b (patch) | |
tree | 9a2d7a5208a558799392985ee2d8d2cef218ab93 /clang/lib/Frontend/CompilerInstance.cpp | |
parent | 07f4357b446e959f81063bb14b705ea375b35ac4 (diff) | |
download | bcm5719-llvm-e1fbde55ddc033bc5aa8b8a69d01b16bc00b4a8b.tar.gz bcm5719-llvm-e1fbde55ddc033bc5aa8b8a69d01b16bc00b4a8b.zip |
Ensure that we clean up after a failed module build and cope with the
results in libclang.
llvm-svn: 149200
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index cc8d3b48a28..4f6ba166a77 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -926,7 +926,7 @@ void LockFileManager::waitForUnlock() { const unsigned MaxSeconds = 3600; do { // Sleep for the designated interval, to allow the owning process time to - // finish up and + // finish up and remove the lock file. // FIXME: Should we hook in to system APIs to get a notification when the // lock file is deleted? #if LLVM_ON_WIN32 |