Prevent multiple build daemons from running simultaneously
| 871 | |
| 872 | // Prevent multiple build daemons from running simultaneously |
| 873 | bool cmInstrumentation::LockBuildDaemon() |
| 874 | { |
| 875 | // 0 = non-blocking, 0s timeout |
| 876 | return this->AcquireLock(".build.lock", this->buildLock, 0); |
| 877 | } |
| 878 | |
| 879 | // Prevent multiple index processes from claiming snippets simultaneously |
| 880 | bool cmInstrumentation::LockIndexing() |
no test coverage detected