mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-31 14:50:34 +08:00
Merge remote-tracking branch 'origin/mdb.RE/0.9'
This commit is contained in:
commit
9f97c1d2ef
@ -13,6 +13,7 @@
|
||||
# - MDB_FDATASYNC
|
||||
# - MDB_FDATASYNC_WORKS
|
||||
# - MDB_USE_PWRITEV
|
||||
# - MDB_USE_ROBUST
|
||||
#
|
||||
# There may be other macros in mdb.c of interest. You should
|
||||
# read mdb.c before changing any of them.
|
||||
|
@ -238,7 +238,25 @@ typedef SSIZE_T ssize_t;
|
||||
#define MDB_OWNERDEAD EOWNERDEAD /**< #LOCK_MUTEX0() result if dead owner */
|
||||
#endif
|
||||
|
||||
#ifdef MDB_OWNERDEAD
|
||||
|
||||
/** Some platforms define the EOWNERDEAD error code
|
||||
* even though they don't support Robust Mutexes.
|
||||
* Compile with -DMDB_USE_ROBUST=0, or use some other
|
||||
* mechanism like -DMDB_USE_SYSV_SEM instead of
|
||||
* -DMDB_USE_POSIX_MUTEX. (SysV semaphores are
|
||||
* also Robust, but some systems don't support them
|
||||
* either.)
|
||||
*/
|
||||
#ifndef MDB_USE_ROBUST
|
||||
/* Android currently lacks Robust Mutex support */
|
||||
#if defined(ANDROID) && defined(MDB_USE_POSIX_MUTEX) && !defined(MDB_USE_ROBUST)
|
||||
#define MDB_USE_ROBUST 0
|
||||
#else
|
||||
#define MDB_USE_ROBUST 1
|
||||
#endif
|
||||
#endif /* MDB_USE_ROBUST */
|
||||
|
||||
#if defined(MDB_OWNERDEAD) && MDB_USE_ROBUST
|
||||
#define MDB_ROBUST_SUPPORTED 1
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user