Fix zero-sized WorkerThreadPool not processing group tasks

(cherry picked from commit 28d0d56a69)
This commit is contained in:
Pedro J. Estébanez 2023-06-29 19:44:29 +02:00 committed by Yuri Sizov
parent 2f32a3454c
commit b3a56228b1
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ Error WorkerThreadPool::wait_for_task_completion(TaskID p_task_id) {
WorkerThreadPool::GroupID WorkerThreadPool::_add_group_task(const Callable &p_callable, void (*p_func)(void *, uint32_t), void *p_userdata, BaseTemplateUserdata *p_template_userdata, int p_elements, int p_tasks, bool p_high_priority, const String &p_description) {
ERR_FAIL_COND_V(p_elements < 0, INVALID_TASK_ID);
if (p_tasks < 0) {
p_tasks = threads.size();
p_tasks = MAX(1u, threads.size());
}
task_mutex.lock();