aboutsummaryrefslogtreecommitdiff
path: root/object-file.h
diff options
context:
space:
mode:
authorJustin Tobler <jltobler@gmail.com>2026-02-02 18:10:00 -0600
committerJunio C Hamano <gitster@pobox.com>2026-02-02 17:14:03 -0800
commit8bf06d05a581dfb552cd0e290680f75d3676eb1d (patch)
tree4b53c6a386478ad71ee126f3bbdec9e5fc40638c /object-file.h
parent585e8dfa27050ce0a69c6e7ead0a3355912d4992 (diff)
downloadgit-8bf06d05a581dfb552cd0e290680f75d3676eb1d.tar.xz
object-file: rename transaction functions
In a subsequent commit, ODB transactions are made more generic to facilitate each ODB source providing its own transaction handling. Rename `object_file_transaction_{begin,commit}()` to `odb_transaction_files_{begin,commit}()` to better match the future source specific transaction implementation. Signed-off-by: Justin Tobler <jltobler@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object-file.h')
-rw-r--r--object-file.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/object-file.h b/object-file.h
index 1229d5f675..b4a3341a89 100644
--- a/object-file.h
+++ b/object-file.h
@@ -202,16 +202,16 @@ struct odb_transaction;
/*
* Tell the object database to optimize for adding
- * multiple objects. object_file_transaction_commit must be called
+ * multiple objects. odb_transaction_files_commit must be called
* to make new objects visible. If a transaction is already
* pending, NULL is returned.
*/
-struct odb_transaction *object_file_transaction_begin(struct odb_source *source);
+struct odb_transaction *odb_transaction_files_begin(struct odb_source *source);
/*
* Tell the object database to make any objects from the
* current transaction visible.
*/
-void object_file_transaction_commit(struct odb_transaction *transaction);
+void odb_transaction_files_commit(struct odb_transaction *transaction);
#endif /* OBJECT_FILE_H */