diff options
author | Ronnie Sahlberg <sahlberg@google.com> | 2014-12-12 09:57:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-12-22 10:13:15 -0800 |
commit | 0b1e654801e52243b63b57e27b50acdfe7c8f853 (patch) | |
tree | 238eb707fb863d9a097dfa59e7c7ca2e22a1432f /refs.h | |
parent | fa5b1830b0605b39295631f6e167ddb133f2dbde (diff) | |
download | git-0b1e654801e52243b63b57e27b50acdfe7c8f853.tar.gz |
refs.c: remove unlock_ref/close_ref/commit_ref from the refs api
unlock|close|commit_ref can be made static since there are no more external
callers.
Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r-- | refs.h | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -198,15 +198,6 @@ extern struct ref_lock *lock_any_ref_for_update(const char *refname, const unsigned char *old_sha1, int flags, int *type_p); -/** Close the file descriptor owned by a lock and return the status */ -extern int close_ref(struct ref_lock *lock); - -/** Close and commit the ref locked by the lock */ -extern int commit_ref(struct ref_lock *lock); - -/** Release any lock taken but not written. **/ -extern void unlock_ref(struct ref_lock *lock); - /* * Setup reflog before using. Set errno to something meaningful on failure. */ |