HomeSort by: relevance | last modified time | path
    Searched defs:MDB_txn (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/openldap/dist/libraries/liblmdb/
lmdb.h 240 typedef struct MDB_txn MDB_txn;
300 /** tie reader locktable slots to #MDB_txn objects instead of to threads */
580 * #MDB_txn objects instead of to threads. I.e. #mdb_txn_reset() keeps
581 * the slot reserved for the #MDB_txn object. A thread may use parallel
856 * MDB_txn object until it or the #MDB_env object is destroyed.
961 * @param[out] txn Address where the new #MDB_txn handle will be stored
975 int mdb_txn_begin(MDB_env *env, MDB_txn *parent, unsigned int flags, MDB_txn **txn);
981 MDB_env *mdb_txn_env(MDB_txn *txn)
    [all...]
mdb.c 471 * See struct MDB_txn.mt_txnid for details.
914 /** Link in #MDB_txn.%mt_loose_pgs list.
1121 struct MDB_txn {
1122 MDB_txn *mt_parent; /**< parent of a nested txn */
1124 MDB_txn *mt_child;
1179 /** @defgroup mdb_txn Transaction Flags
1192 #define MDB_TXN_HAS_CHILD 0x10 /**< txn has an #MDB_txn.%mt_child */
1196 unsigned int mt_flags; /**< @ref mdb_txn */
1229 MDB_txn *mc_txn;
1322 MDB_txn *me_txn; /**< current write transaction *
    [all...]

Completed in 18 milliseconds