| 47 | } |
| 48 | |
| 49 | bool FileLock::lock(LockType lockType) { |
| 50 | return doLock(lockType, true); |
| 51 | } |
| 52 | |
| 53 | bool FileLock::try_lock(LockType lockType, bool *tryAgain) { |
| 54 | return doLock(lockType, false, tryAgain); |
nothing calls this directly
no outgoing calls
no test coverage detected