From 2e8398c0956544e2c316ef7ec6263f78d1fbb705 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 3 Mar 2017 17:16:39 +0100 Subject: Get rid of `BLI_task_pool_stop()`. Comments said that function was supposed to 'stop worker threads', but it absolutely did not do anything like that, was merely wiping out TODO queue of tasks from given pool (kind of subset of what `BLI_task_pool_cancel()` does). Misleading, and currently useless, we can always add it back if we need it some day, but for now we try to simplify that area. --- source/blender/blenlib/intern/task.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source/blender') diff --git a/source/blender/blenlib/intern/task.c b/source/blender/blenlib/intern/task.c index 359360d59c4..91e821a8f1a 100644 --- a/source/blender/blenlib/intern/task.c +++ b/source/blender/blenlib/intern/task.c @@ -708,13 +708,6 @@ void BLI_task_pool_cancel(TaskPool *pool) pool->do_cancel = false; } -void BLI_task_pool_stop(TaskPool *pool) -{ - task_scheduler_clear(pool->scheduler, pool); - - BLI_assert(pool->num == 0); -} - bool BLI_task_pool_canceled(TaskPool *pool) { return pool->do_cancel; -- cgit v1.2.3