|
|
|
@ -23,6 +23,16 @@ struct rtpengine_common_config { |
|
|
|
|
|
|
|
extern struct rtpengine_common_config *rtpe_common_config_ptr; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*** GLOBALS ***/ |
|
|
|
|
|
|
|
extern __thread struct timeval rtpe_now; |
|
|
|
extern volatile int rtpe_shutdown; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*** PROTOTYPES ***/ |
|
|
|
|
|
|
|
void daemonize(void); |
|
|
|
@ -59,4 +69,136 @@ INLINE void random_string(unsigned char *buf, int len) { |
|
|
|
assert(ret == 1); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*** MUTEX ABSTRACTION ***/ |
|
|
|
|
|
|
|
typedef pthread_mutex_t mutex_t; |
|
|
|
typedef pthread_rwlock_t rwlock_t; |
|
|
|
typedef pthread_cond_t cond_t; |
|
|
|
|
|
|
|
#define mutex_init(m) __debug_mutex_init(m, __FILE__, __LINE__) |
|
|
|
#define mutex_destroy(m) __debug_mutex_destroy(m, __FILE__, __LINE__) |
|
|
|
#define mutex_lock(m) __debug_mutex_lock(m, __FILE__, __LINE__) |
|
|
|
#define mutex_trylock(m) __debug_mutex_trylock(m, __FILE__, __LINE__) |
|
|
|
#define mutex_unlock(m) __debug_mutex_unlock(m, __FILE__, __LINE__) |
|
|
|
#define MUTEX_STATIC_INIT PTHREAD_MUTEX_INITIALIZER |
|
|
|
|
|
|
|
#define rwlock_init(l) __debug_rwlock_init(l, __FILE__, __LINE__) |
|
|
|
#define rwlock_destroy(l) __debug_rwlock_destroy(l, __FILE__, __LINE__) |
|
|
|
#define rwlock_lock_r(l) __debug_rwlock_lock_r(l, __FILE__, __LINE__) |
|
|
|
#define rwlock_unlock_r(l) __debug_rwlock_unlock_r(l, __FILE__, __LINE__) |
|
|
|
#define rwlock_lock_w(l) __debug_rwlock_lock_w(l, __FILE__, __LINE__) |
|
|
|
#define rwlock_unlock_w(l) __debug_rwlock_unlock_w(l, __FILE__, __LINE__) |
|
|
|
|
|
|
|
#define cond_init(c) __debug_cond_init(c, __FILE__, __LINE__) |
|
|
|
#define cond_wait(c,m) __debug_cond_wait(c,m, __FILE__, __LINE__) |
|
|
|
#define cond_timedwait(c,m,t) __debug_cond_timedwait(c,m,t, __FILE__, __LINE__) |
|
|
|
#define cond_signal(c) __debug_cond_signal(c, __FILE__, __LINE__) |
|
|
|
#define cond_broadcast(c) __debug_cond_broadcast(c, __FILE__, __LINE__) |
|
|
|
#define COND_STATIC_INIT PTHREAD_COND_INITIALIZER |
|
|
|
|
|
|
|
INLINE int __cond_timedwait_tv(cond_t *c, mutex_t *m, const struct timeval *tv) { |
|
|
|
struct timespec ts; |
|
|
|
ts.tv_sec = tv->tv_sec; |
|
|
|
ts.tv_nsec = tv->tv_usec * 1000; |
|
|
|
return pthread_cond_timedwait(c, m, &ts); |
|
|
|
} |
|
|
|
|
|
|
|
#ifndef __THREAD_DEBUG |
|
|
|
|
|
|
|
#define __debug_mutex_init(m, F, L) pthread_mutex_init(m, NULL) |
|
|
|
#define __debug_mutex_destroy(m, F, L) pthread_mutex_destroy(m) |
|
|
|
#define __debug_mutex_lock(m, F, L) pthread_mutex_lock(m) |
|
|
|
#define __debug_mutex_trylock(m, F, L) pthread_mutex_trylock(m) |
|
|
|
#define __debug_mutex_unlock(m, F, L) pthread_mutex_unlock(m) |
|
|
|
|
|
|
|
#define __debug_rwlock_init(l, F, L) pthread_rwlock_init(l, NULL) |
|
|
|
#define __debug_rwlock_destroy(l, F, L) pthread_rwlock_destroy(l) |
|
|
|
#define __debug_rwlock_lock_r(l, F, L) pthread_rwlock_rdlock(l) |
|
|
|
#define __debug_rwlock_unlock_r(l, F, L) pthread_rwlock_unlock(l) |
|
|
|
#define __debug_rwlock_lock_w(l, F, L) pthread_rwlock_wrlock(l) |
|
|
|
#define __debug_rwlock_unlock_w(l, F, L) pthread_rwlock_unlock(l) |
|
|
|
|
|
|
|
#define __debug_cond_init(c, F, L) pthread_cond_init(c, NULL) |
|
|
|
#define __debug_cond_wait(c, m, F, L) pthread_cond_wait(c,m) |
|
|
|
#define __debug_cond_timedwait(c, m, t, F, L) __cond_timedwait_tv(c,m,t) |
|
|
|
#define __debug_cond_signal(c, F, L) pthread_cond_signal(c) |
|
|
|
#define __debug_cond_broadcast(c, F, L) pthread_cond_broadcast(c) |
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
|
|
|
|
#include "log.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INLINE int __debug_mutex_init(mutex_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "mutex_init(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_mutex_init(m, NULL); |
|
|
|
} |
|
|
|
INLINE int __debug_mutex_destroy(mutex_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "mutex_destroy(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_mutex_destroy(m); |
|
|
|
} |
|
|
|
INLINE int __debug_mutex_lock(mutex_t *m, const char *file, unsigned int line) { |
|
|
|
int ret; |
|
|
|
write_log(LOG_DEBUG, "mutex_lock(%p) at %s:%u ...", m, file, line); |
|
|
|
ret = pthread_mutex_lock(m); |
|
|
|
write_log(LOG_DEBUG, "mutex_lock(%p) at %s:%u returning %i", m, file, line, ret); |
|
|
|
return ret; |
|
|
|
} |
|
|
|
INLINE int __debug_mutex_trylock(mutex_t *m, const char *file, unsigned int line) { |
|
|
|
int ret; |
|
|
|
write_log(LOG_DEBUG, "mutex_trylock(%p) at %s:%u ...", m, file, line); |
|
|
|
ret = pthread_mutex_trylock(m); |
|
|
|
write_log(LOG_DEBUG, "mutex_trylock(%p) at %s:%u returning %i", m, file, line, ret); |
|
|
|
return ret; |
|
|
|
} |
|
|
|
INLINE int __debug_mutex_unlock(mutex_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "mutex_unlock(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_mutex_unlock(m); |
|
|
|
} |
|
|
|
|
|
|
|
INLINE int __debug_rwlock_init(rwlock_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "rwlock_init(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_rwlock_init(m, NULL); |
|
|
|
} |
|
|
|
INLINE int __debug_rwlock_destroy(rwlock_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "rwlock_destroy(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_rwlock_destroy(m); |
|
|
|
} |
|
|
|
INLINE int __debug_rwlock_lock_r(rwlock_t *m, const char *file, unsigned int line) { |
|
|
|
int ret; |
|
|
|
write_log(LOG_DEBUG, "rwlock_lock_r(%p) at %s:%u ...", m, file, line); |
|
|
|
ret = pthread_rwlock_rdlock(m); |
|
|
|
write_log(LOG_DEBUG, "rwlock_lock_r(%p) at %s:%u returning %i", m, file, line, ret); |
|
|
|
return ret; |
|
|
|
} |
|
|
|
INLINE int __debug_rwlock_lock_w(rwlock_t *m, const char *file, unsigned int line) { |
|
|
|
int ret; |
|
|
|
write_log(LOG_DEBUG, "rwlock_lock_w(%p) at %s:%u ...", m, file, line); |
|
|
|
ret = pthread_rwlock_wrlock(m); |
|
|
|
write_log(LOG_DEBUG, "rwlock_lock_w(%p) at %s:%u returning %i", m, file, line, ret); |
|
|
|
return ret; |
|
|
|
} |
|
|
|
INLINE int __debug_rwlock_unlock_r(rwlock_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "rwlock_unlock_r(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_rwlock_unlock(m); |
|
|
|
} |
|
|
|
INLINE int __debug_rwlock_unlock_w(rwlock_t *m, const char *file, unsigned int line) { |
|
|
|
write_log(LOG_DEBUG, "rwlock_unlock_w(%p) at %s:%u", m, file, line); |
|
|
|
return pthread_rwlock_unlock(m); |
|
|
|
} |
|
|
|
|
|
|
|
#define __debug_cond_init(c, F, L) pthread_cond_init(c, NULL) |
|
|
|
#define __debug_cond_wait(c, m, F, L) pthread_cond_wait(c,m) |
|
|
|
#define __debug_cond_timedwait(c, m, t, F, L) __cond_timedwait_tv(c,m,t) |
|
|
|
#define __debug_cond_signal(c, F, L) pthread_cond_signal(c) |
|
|
|
#define __debug_cond_broadcast(c, F, L) pthread_cond_broadcast(c) |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif |