mdbx: minor refine internals comments/docs.

Change-Id: Ie1dd2233259948b4906e66fb191832dbc6526c47
This commit is contained in:
Leonid Yuriev
2020-10-28 03:16:57 +03:00
parent b1d21d571f
commit 105947b50c
2 changed files with 2 additions and 2 deletions

View File

@@ -371,7 +371,7 @@ typedef struct MDBX_meta {
typedef struct MDBX_page {
union {
struct MDBX_page *mp_next; /* for in-memory list of freed pages */
uint64_t mp_txnid; /* txnid during which the page has been COW-ed */
uint64_t mp_txnid; /* txnid that committed this page */
};
uint16_t mp_leaf2_ksize; /* key size if this is a LEAF2 page */
#define P_BRANCH 0x01 /* branch page */