aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-13 14:03:34 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-13 14:03:34 +0000
commit5f2ad1136a82346f7aadda0882c6965bf2fe2a16 (patch)
tree54cc0e5fea9bbdb200e6dd6ae7f72f89c86a7492 /main
parentfdc273032aba655c7399957a65d02f02dae3b39a (diff)
Merged revisions 89239 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89239 | tilghman | 2007-11-13 07:51:53 -0600 (Tue, 13 Nov 2007) | 4 lines Debugging is running into the 16-lock limit. Increase to avoid. (This define is only effective when debugging is turned on, so there's no effect for most installations.) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89240 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/utils.c b/main/utils.c
index 79bfd5306..49e559da9 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -520,7 +520,7 @@ static int dev_urandom_fd;
#ifdef DEBUG_THREADS
/*! \brief A reasonable maximum number of locks a thread would be holding ... */
-#define AST_MAX_LOCKS 16
+#define AST_MAX_LOCKS 32
/* Allow direct use of pthread_mutex_t and friends */
#undef pthread_mutex_t