mdbx: перемещение и корректировка комментария размечающего внутренние поля пишущей транзакции.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2025-01-05 14:35:39 +03:00
parent 5ba257fafc
commit faa9753d2d

View File

@ -210,7 +210,6 @@ struct MDBX_txn {
} to; } to;
struct { struct {
troika_t troika; troika_t troika;
/* In write txns, array of cursors for each DB */
pnl_t __restrict repnl; /* Reclaimed GC pages */ pnl_t __restrict repnl; /* Reclaimed GC pages */
struct { struct {
/* The list of reclaimed txn-ids from GC */ /* The list of reclaimed txn-ids from GC */
@ -249,6 +248,7 @@ struct MDBX_txn {
size_t writemap_dirty_npages; size_t writemap_dirty_npages;
size_t writemap_spilled_npages; size_t writemap_spilled_npages;
}; };
/* In write txns, next is located the array of cursors for each DB */
} tw; } tw;
}; };
}; };