From: Dennis Schafroth Date: Wed, 16 Mar 2011 13:57:17 +0000 (+0100) Subject: Out defined DEBUG logging of sel_thread size X-Git-Tag: v1.5.6~37 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=6c93cf7588a8b1efab211236bfedf55a591ac635;p=pazpar2-moved-to-github.git Out defined DEBUG logging of sel_thread size --- diff --git a/src/sel_thread.c b/src/sel_thread.c index 05cea3a..8a14e55 100644 --- a/src/sel_thread.c +++ b/src/sel_thread.c @@ -99,7 +99,9 @@ static void *sel_thread_handler(void *vp) assert(p->input_queue); work_this = queue_remove_last(&p->input_queue); input_queue_length--; +#if 0 yaz_log(YLOG_DEBUG, "input queue length after pop: %d", input_queue_length); +#endif assert(work_this); yaz_mutex_leave(p->mutex); @@ -218,7 +220,9 @@ void sel_thread_add(sel_thread_t p, void *data) work_p->next = p->input_queue; p->input_queue = work_p; input_queue_length++; +#if 0 yaz_log(YLOG_DEBUG, "sel_thread_add: Input queue length after push: %d", input_queue_length); +#endif yaz_cond_signal(p->input_data); yaz_mutex_leave(p->mutex); }