[asterisk-commits] kpfleming: branch 1.4 r43486 -
/branches/1.4/main/channel.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Sep 22 08:51:13 MST 2006
Author: kpfleming
Date: Fri Sep 22 10:51:13 2006
New Revision: 43486
URL: http://svn.digium.com/view/asterisk?rev=43486&view=rev
Log:
all the Linux systems I have don't use '__m_count' for this field, so I don't know where this came from...
Modified:
branches/1.4/main/channel.c
Modified: branches/1.4/main/channel.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/channel.c?rev=43486&r1=43485&r2=43486&view=diff
==============================================================================
--- branches/1.4/main/channel.c (original)
+++ branches/1.4/main/channel.c Fri Sep 22 10:51:13 2006
@@ -4445,9 +4445,9 @@
#ifdef __linux__
int count = 0;
#ifdef DEBUG_THREADS
- if ((count = chan->lock.mutex.__m_count))
+ if ((count = chan->lock.mutex.__data.__count))
#else
- if ((count = chan->lock.__m_count))
+ if ((count = chan->lock.__data.__count))
#endif
ast_log(LOG_DEBUG, ":::=== Still have %d locks (recursive)\n", count);
#endif
@@ -4481,9 +4481,9 @@
#ifdef __linux__
int count = 0;
#ifdef DEBUG_THREADS
- if ((count = chan->lock.mutex.__m_count))
+ if ((count = chan->lock.mutex.__data.__count))
#else
- if ((count = chan->lock.__m_count))
+ if ((count = chan->lock.__data.__count))
#endif
ast_log(LOG_DEBUG, ":::=== Now have %d locks (recursive)\n", count);
#endif
@@ -4517,9 +4517,9 @@
#ifdef __linux__
int count = 0;
#ifdef DEBUG_THREADS
- if ((count = chan->lock.mutex.__m_count))
+ if ((count = chan->lock.mutex.__data.__count))
#else
- if ((count = chan->lock.__m_count))
+ if ((count = chan->lock.__data.__count))
#endif
ast_log(LOG_DEBUG, ":::=== Now have %d locks (recursive)\n", count);
#endif
More information about the asterisk-commits
mailing list