util: rename list_empty() to list_is_empty()
[mesa.git] / src / gallium / drivers / llvmpipe / lp_cs_tpool.c
index 26e82ab1285c52f71c7bfe187ea91b53c81fcc19..4a23b6a2a950e93521af4579ecba598dc9031b7c 100644 (file)
@@ -44,7 +44,7 @@ lp_cs_tpool_worker(void *data)
    while (!pool->shutdown) {
       struct lp_cs_tpool_task *task;
 
-      while (list_empty(&pool->workqueue) && !pool->shutdown)
+      while (list_is_empty(&pool->workqueue) && !pool->shutdown)
          cnd_wait(&pool->new_work, &pool->m);
 
       if (pool->shutdown)