aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-01-11 17:46:07 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:10 +0100
commit8aa3eff77fd88102b9bf4fbec9bbc9f4388cf4c1 (patch)
tree61afaec8a17d35ab7b4c79ece70331762ceb4e69
parent3dc2ba04ab33be723d2ea8dfe1638a127519a0ae (diff)
Tidy up
-rw-r--r--src/thread-pool.c3
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 ) {