summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2007-07-31 15:01:27 +0000
committerKevin P. Fleming <kpfleming@digium.com>2007-07-31 15:01:27 +0000
commitf35541734a30459f6159c5942958ccf85cbf4623 (patch)
tree61395b7a0fe326e51a94c6106c33bb0655be4566 /channels
parentb2eb99bb476a30aab8fe9537db221e8656a4169c (diff)
there is no use in having functions that have no code in them, and hide the locking info when DEBUG_THREADS is enabled... i could have fixed this to be dependent on DEBUG_THREADS, but it would be just as easy for someone to add their test/debugging code to the macros as it would have been to the functions
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77821 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 55c79127d..af27a912e 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1841,24 +1841,8 @@ static struct ast_rtp_protocol sip_rtp = {
get_codec: sip_get_codec,
};
-#ifndef DETECT_DEADLOCKS
-/*! \brief Helper function to lock, hiding the underlying locking mechanism. */
-static void sip_pvt_lock(struct sip_pvt *pvt)
-{
- ast_mutex_lock(&pvt->pvt_lock);
-}
-
-/*! \brief Helper function to unlock pvt, hiding the underlying locking mechanism. */
-static void sip_pvt_unlock(struct sip_pvt *pvt)
-{
- ast_mutex_unlock(&pvt->pvt_lock);
-}
-#else
-/* we don't want to HIDE the information about where the lock was requested if trying to debug
- * deadlocks! So, just make these macros! */
#define sip_pvt_lock(x) ast_mutex_lock(&x->pvt_lock)
#define sip_pvt_unlock(x) ast_mutex_unlock(&x->pvt_lock)
-#endif
/*!
* helper functions to unreference various types of objects.