Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
mdbx: minor reformat doxygen comments.
Browse files Browse the repository at this point in the history
Change-Id: I0dbe6ddc1423a1fdcb2eb73b2e982e398de1faa7
  • Loading branch information
erthink committed Oct 23, 2020
1 parent 39c93be commit ca2ecf2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions mdbx.h
Original file line number Diff line number Diff line change
Expand Up @@ -2831,9 +2831,9 @@ struct MDBX_txn_info {
uint64_t txn_id;

/** For READ-ONLY transaction: the lag from a recent MVCC-snapshot, i.e. the
number of committed transaction since read transaction started. For WRITE
transaction (provided if `scan_rlt=true`): the lag of the oldest reader
from current transaction (i.e. at least 1 if any reader running). */
number of committed transaction since read transaction started.
For WRITE transaction (provided if `scan_rlt=true`): the lag of the oldest
reader from current transaction (i.e. at least 1 if any reader running). */
uint64_t txn_reader_lag;

/** Used space by this transaction, i.e. corresponding to the last used
Expand All @@ -2857,7 +2857,8 @@ struct MDBX_txn_info {

/** For READ-ONLY transaction: the space available for writer(s) and that
must be exhausted for reason to call the Handle-Slow-Readers callback for
this read transaction. For WRITE transaction: the space inside transaction
this read transaction.
For WRITE transaction: the space inside transaction
that left to `MDBX_TXN_FULL` error. */
uint64_t txn_space_leftover;

Expand Down

0 comments on commit ca2ecf2

Please sign in to comment.