From: Hallvard Furuseth Date: Wed, 7 Dec 2016 18:06:11 +0000 (+0100) Subject: MDB_CP_COMPACT comments X-Git-Tag: accepted/tizen/5.0/unified/20181102.030725~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef066598b5e4c0eaab29c858451569439cb6b5d6;p=platform%2Fupstream%2Flmdb.git MDB_CP_COMPACT comments --- diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index e43e8dc..b057829 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -9765,7 +9765,10 @@ typedef struct mdb_copy { HANDLE mc_fd; int mc_toggle; /**< Buffer number in provider */ int mc_new; /**< (0-2 buffers to write) | (#MDB_EOF at end) */ - volatile int mc_error; /**< Error code, never cleared if set */ + /** Error code. Never cleared if set. Both threads can set nonzero + * to fail the copy. Not mutex-protected, LMDB expects atomic int. + */ + volatile int mc_error; } mdb_copy; /** Dedicated writer thread for compacting copy. */ @@ -9850,7 +9853,11 @@ mdb_env_cthr_toggle(mdb_copy *my, int adjust) return my->mc_error; } - /** Depth-first tree traversal for compacting copy. */ + /** Depth-first tree traversal for compacting copy. + * @param[in] my control structure. + * @param[in,out] pg database root. + * @param[in] flags includes #F_DUPDATA if it is a sorted-duplicate sub-DB. + */ static int ESECT mdb_env_cwalk(mdb_copy *my, pgno_t *pg, int flags) {