From 2ff61cb4add87dd2592b59440dafae856da51b6b Mon Sep 17 00:00:00 2001 From: Dave West Date: Fri, 30 Nov 2007 19:30:09 +0000 Subject: [PATCH] A mismatch of the worker thread counts is a critical thing. Log it as such. --- citadel/sysdep.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/citadel/sysdep.c b/citadel/sysdep.c index 44cb74745..dcd3b249f 100644 --- a/citadel/sysdep.c +++ b/citadel/sysdep.c @@ -1579,12 +1579,11 @@ void ctdl_internal_thread_gc (void) /* Sanity check number of worker threads */ if (workers != num_workers) { - CtdlLogPrintf(CTDL_WARNING, - "Thread system WARNING, discrepancy in number of worker threads. Counted %d, should be %d.\n", + CtdlLogPrintf(CTDL_EMERG, + "Thread system PANIC, discrepancy in number of worker threads. Counted %d, should be %d.\n", workers, num_workers ); abort(); - return; } } -- 2.39.2