From d6056c77fb3f452de0e61e0c8f1aa39d32d2524c Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 5 Feb 2022 07:52:12 -0500 Subject: [PATCH] [sixel] need a broadcast to bring out all workers #2573 --- src/lib/sixel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/sixel.c b/src/lib/sixel.c index d1da5a2ca..9917328ef 100644 --- a/src/lib/sixel.c +++ b/src/lib/sixel.c @@ -1019,7 +1019,7 @@ build_data_table(qstate* qs){ // FIXME need enqueue it globsengine.qs = qs; pthread_mutex_unlock(&globsengine.lock); - pthread_cond_signal(&globsengine.cond); + pthread_cond_broadcast(&globsengine.cond); size_t tsize = RGBSIZE * smap->colors; qs->table = malloc(tsize); if(qs->table == NULL){