mdbx: изоляция txl-списков от кода PNL.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev)
2025-06-18 11:35:56 +03:00
parent bb37c93dd5
commit ecf5acfff0
3 changed files with 19 additions and 15 deletions

View File

@@ -24,3 +24,7 @@ MDBX_MAYBE_UNUSED MDBX_INTERNAL int __must_check_result txl_append(txl_t __restr
MDBX_MAYBE_UNUSED MDBX_INTERNAL void txl_sort(txl_t txl);
MDBX_MAYBE_UNUSED MDBX_INTERNAL bool txl_contain(const txl_t txl, txnid_t id);
static inline size_t txl_alloclen(const_txl_t txl) { return txl[-1]; }
static inline size_t txl_size(const_txl_t txl) { return txl[0]; }