summaryrefslogtreecommitdiff
path: root/logger.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-08-31 02:43:44 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-08-31 02:43:44 +0000
commit9614adc0569a644c7d2e0ab31788a55ea5dd89da (patch)
tree77f57e9ab6df40303a7189d17a821a55567a6ad1 /logger.c
parent746efc536a9be5d6a74599485f8847c586af1f4f (diff)
make DEBUG_THREADS have more visible logging
make DEBUG_THREADS able to catch locks being unlocked by threads that did not own them add proper wrappers for pthread_cond_wait() and pthread_cond_timedwait() for DEBUG_THREADS mode git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6464 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'logger.c')
-rwxr-xr-xlogger.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/logger.c b/logger.c
index be3b8c176..b06efb06b 100755
--- a/logger.c
+++ b/logger.c
@@ -29,15 +29,6 @@
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-#include "asterisk/lock.h"
-#include "asterisk/options.h"
-#include "asterisk/channel.h"
-#include "asterisk/config.h"
-#include "asterisk/term.h"
-#include "asterisk/cli.h"
-#include "asterisk/utils.h"
-#include "asterisk/manager.h"
-
static int syslog_level_map[] = {
LOG_DEBUG,
LOG_INFO, /* arbitrary equivalent of LOG_EVENT */
@@ -51,6 +42,14 @@ static int syslog_level_map[] = {
#define SYSLOG_NLEVELS 6
#include "asterisk/logger.h"
+#include "asterisk/lock.h"
+#include "asterisk/options.h"
+#include "asterisk/channel.h"
+#include "asterisk/config.h"
+#include "asterisk/term.h"
+#include "asterisk/cli.h"
+#include "asterisk/utils.h"
+#include "asterisk/manager.h"
#define MAX_MSG_QUEUE 200