|
|
|
@ -49,10 +49,15 @@
|
|
|
|
|
#define _ASTERISK_LOCK_H
|
|
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#ifdef HAVE_BKTR
|
|
|
|
|
#include <execinfo.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
|
|
|
|
|
#include "asterisk/time.h"
|
|
|
|
|
#endif
|
|
|
|
|
#include "asterisk/logger.h"
|
|
|
|
|
|
|
|
|
|
/* internal macro to profile mutexes. Only computes the delay on
|
|
|
|
@ -1395,7 +1400,23 @@ static inline int _ast_rwlock_timedrdlock(ast_rwlock_t *t, const char *name,
|
|
|
|
|
ast_store_lock_info(AST_WRLOCK, filename, line, func, name, t);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
|
|
|
|
|
res = pthread_rwlock_timedrdlock(&t->lock, abs_timeout);
|
|
|
|
|
#else
|
|
|
|
|
do {
|
|
|
|
|
struct timeval _start = ast_tvnow(), _diff;
|
|
|
|
|
for (;;) {
|
|
|
|
|
if (!(res = pthread_rwlock_tryrdlock(&t->lock))) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
_diff = ast_tvsub(ast_tvnow(), _start);
|
|
|
|
|
if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
usleep(1);
|
|
|
|
|
}
|
|
|
|
|
} while (0);
|
|
|
|
|
#endif
|
|
|
|
|
if (!res) {
|
|
|
|
|
ast_reentrancy_lock(lt);
|
|
|
|
|
if (lt->reentrancy < AST_MAX_REENTRANCY) {
|
|
|
|
@ -1474,7 +1495,23 @@ static inline int _ast_rwlock_timedwrlock(ast_rwlock_t *t, const char *name,
|
|
|
|
|
ast_store_lock_info(AST_WRLOCK, filename, line, func, name, t);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
|
|
|
|
|
res = pthread_rwlock_timedwrlock(&t->lock, abs_timeout);
|
|
|
|
|
#else
|
|
|
|
|
do {
|
|
|
|
|
struct timeval _start = ast_tvnow(), _diff;
|
|
|
|
|
for (;;) {
|
|
|
|
|
if (!(res = pthread_rwlock_trywrlock(&t->lock))) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
_diff = ast_tvsub(ast_tvnow(), _start);
|
|
|
|
|
if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
usleep(1);
|
|
|
|
|
}
|
|
|
|
|
} while (0);
|
|
|
|
|
#endif
|
|
|
|
|
if (!res) {
|
|
|
|
|
ast_reentrancy_lock(lt);
|
|
|
|
|
if (lt->reentrancy < AST_MAX_REENTRANCY) {
|
|
|
|
@ -1762,7 +1799,23 @@ static inline int ast_rwlock_rdlock(ast_rwlock_t *prwlock)
|
|
|
|
|
|
|
|
|
|
static inline int ast_rwlock_timedrdlock(ast_rwlock_t *prwlock, const struct timespec *abs_timeout)
|
|
|
|
|
{
|
|
|
|
|
return pthread_rwlock_timedrdlock(prwlock, abs_timeout);
|
|
|
|
|
int res;
|
|
|
|
|
#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
|
|
|
|
|
res = pthread_rwlock_timedrdlock(prwlock, abs_timeout);
|
|
|
|
|
#else
|
|
|
|
|
struct timeval _start = ast_tvnow(), _diff;
|
|
|
|
|
for (;;) {
|
|
|
|
|
if (!(res = pthread_rwlock_tryrdlock(prwlock))) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
_diff = ast_tvsub(ast_tvnow(), _start);
|
|
|
|
|
if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
usleep(1);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int ast_rwlock_tryrdlock(ast_rwlock_t *prwlock)
|
|
|
|
@ -1777,7 +1830,25 @@ static inline int ast_rwlock_wrlock(ast_rwlock_t *prwlock)
|
|
|
|
|
|
|
|
|
|
static inline int ast_rwlock_timedwrlock(ast_rwlock_t *prwlock, const struct timespec *abs_timeout)
|
|
|
|
|
{
|
|
|
|
|
return pthread_rwlock_timedwrlock(prwlock, abs_timeout);
|
|
|
|
|
int res;
|
|
|
|
|
#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
|
|
|
|
|
res = pthread_rwlock_timedwrlock(prwlock, abs_timeout);
|
|
|
|
|
#else
|
|
|
|
|
do {
|
|
|
|
|
struct timeval _start = ast_tvnow(), _diff;
|
|
|
|
|
for (;;) {
|
|
|
|
|
if (!(res = pthread_rwlock_trywrlock(prwlock))) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
_diff = ast_tvsub(ast_tvnow(), _start);
|
|
|
|
|
if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
usleep(1);
|
|
|
|
|
}
|
|
|
|
|
} while (0);
|
|
|
|
|
#endif
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int ast_rwlock_trywrlock(ast_rwlock_t *prwlock)
|
|
|
|
|