| 51 | } |
| 52 | |
| 53 | bool FileLock::try_lock(LockType lockType, bool *tryAgain) { |
| 54 | return doLock(lockType, false, tryAgain); |
| 55 | } |
| 56 | |
| 57 | bool FileLock::doLock(LockType lockType, bool wait, bool *tryAgain) { |
| 58 | if (!isFileLockValid()) { |
nothing calls this directly
no outgoing calls
no test coverage detected