* Return the path of the lockfile. The return value is a pointer to a * field within the lock_file object and should not be freed. */
| 256 | * field within the lock_file object and should not be freed. |
| 257 | */ |
| 258 | static inline const char *get_lock_file_path(struct lock_file *lk) |
| 259 | { |
| 260 | return get_tempfile_path(lk->tempfile); |
| 261 | } |
| 262 | |
| 263 | static inline int get_lock_file_fd(struct lock_file *lk) |
| 264 | { |
no test coverage detected