diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2014-10-01 12:28:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-10-01 22:45:11 +0200 |
commit | 7108ad232fc7a4c889e82b40c52125adc9796ff5 (patch) | |
tree | 21a15d1fe052aa839d0b4f536da92695b74d0f1b /cache.h | |
parent | lockfile.c: document the various states of lock_file objects (diff) | |
download | git-7108ad232fc7a4c889e82b40c52125adc9796ff5.tar.xz git-7108ad232fc7a4c889e82b40c52125adc9796ff5.zip |
cache.h: define constants LOCK_SUFFIX and LOCK_SUFFIX_LEN
There are a few places that use these values, so define constants for
them.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -570,6 +570,10 @@ extern void fill_stat_cache_info(struct cache_entry *ce, struct stat *st); #define REFRESH_IN_PORCELAIN 0x0020 /* user friendly output, not "needs update" */ extern int refresh_index(struct index_state *, unsigned int flags, const struct pathspec *pathspec, char *seen, const char *header_msg); +/* String appended to a filename to derive the lockfile name: */ +#define LOCK_SUFFIX ".lock" +#define LOCK_SUFFIX_LEN 5 + struct lock_file { struct lock_file *next; int fd; |