diff options
-rw-r--r-- | src/thread-pool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/thread-pool.c b/src/thread-pool.c index f44a8f85..b077fb9c 100644 --- a/src/thread-pool.c +++ b/src/thread-pool.c @@ -214,7 +214,6 @@ static void *task_worker(void *pargsv) cookie = malloc(sizeof(int)); *cookie = w->id; pthread_setspecific(status_label_key, cookie); - STATUS("Initialised thread %i\n", w->id); free(w); @@ -243,7 +242,7 @@ static void *task_worker(void *pargsv) cookie = *(int *)pthread_getspecific(status_label_key); q->work(task, cookie); - /* Update totals, release cookie etc */ + /* Update totals etc */ pthread_mutex_lock(&q->lock); q->n_completed++; if ( q->finalise ) { |