mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 07:37:38 +01:00
Use adaptive mutexes when available.
This commit is contained in:
parent
2c3444d0f4
commit
85ce920cff
1 changed files with 8 additions and 1 deletions
|
@ -186,8 +186,15 @@ static inline void mark_as_used(void *v UNUSED) {
|
||||||
# define SIGPROCMASK(how, new_mask, old_mask) mark_as_used(old_mask)
|
# define SIGPROCMASK(how, new_mask, old_mask) mark_as_used(old_mask)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Prefer adaptive mutexes if available */
|
||||||
|
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
|
||||||
|
#define UNW_PTHREAD_MUTEX_INITIALIZER PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
|
||||||
|
#else
|
||||||
|
#define UNW_PTHREAD_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
|
||||||
|
#endif
|
||||||
|
|
||||||
#define define_lock(name) \
|
#define define_lock(name) \
|
||||||
pthread_mutex_t name = PTHREAD_MUTEX_INITIALIZER
|
pthread_mutex_t name = UNW_PTHREAD_MUTEX_INITIALIZER
|
||||||
#define lock_init(l) mutex_init (l)
|
#define lock_init(l) mutex_init (l)
|
||||||
#define lock_acquire(l,m) \
|
#define lock_acquire(l,m) \
|
||||||
do { \
|
do { \
|
||||||
|
|
Loading…
Reference in a new issue