| 190 | int flags, long timeout_ms, int mode); |
| 191 | |
| 192 | static inline int hold_lock_file_for_update_timeout( |
| 193 | struct lock_file *lk, const char *path, |
| 194 | int flags, long timeout_ms) |
| 195 | { |
| 196 | return hold_lock_file_for_update_timeout_mode(lk, path, flags, |
| 197 | timeout_ms, 0666); |
| 198 | } |
| 199 | |
| 200 | /* |
| 201 | * Attempt to create a lockfile for the file at `path` and return a |
no test coverage detected