Merged revisions 158540 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

................
r158540 | russell | 2008-11-21 16:12:37 -0600 (Fri, 21 Nov 2008) | 10 lines

Merged revisions 158539 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r158539 | russell | 2008-11-21 16:05:55 -0600 (Fri, 21 Nov 2008) | 2 lines

When compiling with DEBUG_THREADS, report the real file/func/line for ao2_lock/ao2_unlock

........

................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@158542 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Russell Bryant 17 years ago
parent 15c881c098
commit c74fff5ebc

@ -192,7 +192,12 @@ int ao2_ref(void *o, int delta);
* \param a A pointer to the object we want lock. * \param a A pointer to the object we want lock.
* \return 0 on success, other values on error. * \return 0 on success, other values on error.
*/ */
#ifndef DEBUG_THREADS
int ao2_lock(void *a); int ao2_lock(void *a);
#else
#define ao2_lock(a) _ao2_lock(a, __FILE__, __PRETTY_FUNCTION__, __LINE__, #a)
int _ao2_lock(void *a, const char *file, const char *func, int line, const char *var);
#endif
/*! \brief /*! \brief
* Unlock an object. * Unlock an object.
@ -200,7 +205,12 @@ int ao2_lock(void *a);
* \param a A pointer to the object we want unlock. * \param a A pointer to the object we want unlock.
* \return 0 on success, other values on error. * \return 0 on success, other values on error.
*/ */
#ifndef DEBUG_THREADS
int ao2_unlock(void *a); int ao2_unlock(void *a);
#else
#define ao2_unlock(a) _ao2_unlock(a, __FILE__, __PRETTY_FUNCTION__, __LINE__, #a)
int _ao2_unlock(void *a, const char *file, const char *func, int line, const char *var);
#endif
/*! /*!
* *

@ -126,7 +126,11 @@ static inline struct astobj2 *INTERNAL_OBJ(void *user_data)
*/ */
#define EXTERNAL_OBJ(_p) ((_p) == NULL ? NULL : (_p)->user_data) #define EXTERNAL_OBJ(_p) ((_p) == NULL ? NULL : (_p)->user_data)
#ifndef DEBUG_THREADS
int ao2_lock(void *user_data) int ao2_lock(void *user_data)
#else
int _ao2_lock(void *user_data, const char *file, const char *func, int line, const char *var)
#endif
{ {
struct astobj2 *p = INTERNAL_OBJ(user_data); struct astobj2 *p = INTERNAL_OBJ(user_data);
@ -137,10 +141,18 @@ int ao2_lock(void *user_data)
ast_atomic_fetchadd_int(&ao2.total_locked, 1); ast_atomic_fetchadd_int(&ao2.total_locked, 1);
#endif #endif
#ifndef DEBUG_THREADS
return ast_mutex_lock(&p->priv_data.lock); return ast_mutex_lock(&p->priv_data.lock);
#else
return __ast_pthread_mutex_lock(file, line, func, var, &p->priv_data.lock);
#endif
} }
#ifndef DEBUG_THREADS
int ao2_unlock(void *user_data) int ao2_unlock(void *user_data)
#else
int _ao2_unlock(void *user_data, const char *file, const char *func, int line, const char *var)
#endif
{ {
struct astobj2 *p = INTERNAL_OBJ(user_data); struct astobj2 *p = INTERNAL_OBJ(user_data);
@ -151,7 +163,11 @@ int ao2_unlock(void *user_data)
ast_atomic_fetchadd_int(&ao2.total_locked, -1); ast_atomic_fetchadd_int(&ao2.total_locked, -1);
#endif #endif
#ifndef DEBUG_THREADS
return ast_mutex_unlock(&p->priv_data.lock); return ast_mutex_unlock(&p->priv_data.lock);
#else
return __ast_pthread_mutex_unlock(file, line, func, var, &p->priv_data.lock);
#endif
} }
/* /*

Loading…
Cancel
Save