diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2014-10-01 12:28:41 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-10-01 13:54:31 -0700 |
commit | 216aab1e3d8eef088dc9785febce24a110e9f835 (patch) | |
tree | 36986d0850dabe51c519fbdb0c130e608fc6c573 /lockfile.c | |
parent | hold_lock_file_for_append(): restore errno before returning (diff) | |
download | tgif-216aab1e3d8eef088dc9785febce24a110e9f835.tar.xz |
hold_locked_index(): move from lockfile.c to read-cache.c
lockfile.c contains the general API for locking any file. Code
specifically about the index file doesn't belong here.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'lockfile.c')
-rw-r--r-- | lockfile.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lockfile.c b/lockfile.c index b2f5d36f7e..63f4e94bce 100644 --- a/lockfile.c +++ b/lockfile.c @@ -340,14 +340,6 @@ int commit_lock_file(struct lock_file *lk) return err; } -int hold_locked_index(struct lock_file *lk, int die_on_error) -{ - return hold_lock_file_for_update(lk, get_index_file(), - die_on_error - ? LOCK_DIE_ON_ERROR - : 0); -} - void rollback_lock_file(struct lock_file *lk) { if (!lk->active) |