mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Clarify mdb_dbi_open doc
The concurrency restriction is on threads within a single process. Multiple processes can use mdb_dbi_open without affecting each other.
This commit is contained in:
parent
03ddbcf37d
commit
9cc04f604f
1 changed files with 3 additions and 3 deletions
|
|
@ -1042,9 +1042,9 @@ int mdb_txn_renew(MDB_txn *txn);
|
|||
* After a successful commit the
|
||||
* handle will reside in the shared environment, and may be used
|
||||
* by other transactions. This function must not be called from
|
||||
* multiple concurrent transactions. A transaction that uses this function
|
||||
* must finish (either commit or abort) before any other transaction may
|
||||
* use this function.
|
||||
* multiple concurrent transactions in the same process. A transaction
|
||||
* that uses this function must finish (either commit or abort) before
|
||||
* any other transaction in the process may use this function.
|
||||
*
|
||||
* To use named databases (with name != NULL), #mdb_env_set_maxdbs()
|
||||
* must be called before opening the environment. Database names
|
||||
|
|
|
|||
Loading…
Reference in a new issue