From 236e2a5f73de889692a7f4197257059ee805ebc9 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 3 Jan 2008 15:58:10 +0000 Subject: added $MainMsgQueueType config parameter --- queue.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'queue.c') diff --git a/queue.c b/queue.c index b8b4eeff..f4dc992c 100644 --- a/queue.c +++ b/queue.c @@ -314,7 +314,8 @@ rsRetVal queueConstruct(queue_t **ppThis, queueType_t qType, int iMaxQueueSize, /* now fire up the worker thread */ pThis->bDoRun = 1; /* we are NOT done (else worker would immediately terminate) */ i = pthread_create(&pThis->thrdWorker, NULL, queueWorker, (void*) pThis); - dbgprintf("Worker thread for queue 0x%lx started with state %d.\n", (unsigned long) pThis, i); + dbgprintf("Worker thread for queue 0x%lx, type %d started with state %d.\n", + (unsigned long) pThis, (int) qType, i); finalize_it: if(iRet == RS_RET_OK) { -- cgit v1.2.3