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.4@158539 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2008-11-21 22:05:55 +00:00
parent 596f31a1a1
commit a0bf88537a
2 changed files with 26 additions and 0 deletions

View File

@@ -185,7 +185,12 @@ int ao2_ref(void *o, int delta);
* \param a A pointer to the object we want lock.
* \return 0 on success, other values on error.
*/
#ifndef DEBUG_THREADS
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
/*!
* Unlock an object.
@@ -193,7 +198,12 @@ int ao2_lock(void *a);
* \param a A pointer to the object we want unlock.
* \return 0 on success, other values on error.
*/
#ifndef DEBUG_THREADS
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
/*!
*