mdbx: rename MDBX_ENV_CHECKPID.

Change-Id: Id0afbea99b0747c6d7a5062c1c4a82ebc69f4f40
This commit is contained in:
Leonid Yuriev
2020-07-22 14:53:15 +03:00
parent 1e3c4dc0ef
commit 0387d6f6d4
5 changed files with 32 additions and 32 deletions

View File

@@ -56,7 +56,7 @@ It would be insane to call fork() and any MDBX-functions simultaneously
from multiple threads. The best way is to prevent the presence of open
MDBX-instances during `fork()`.
The `MDBX_TXN_CHECKPID` build-time option, which is ON by default on
The `MDBX_ENV_CHECKPID` build-time option, which is ON by default on
non-Windows platforms (i.e. where `fork()` is available), enables PID
checking at a few critical points. But this does not give any guarantees,
but only allows you to detect such errors a little sooner. Depending on