From 1dfbe97b0a639c91d7727acc443ee2a9c2057920 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 25 Jul 2020 22:12:24 +0200 Subject: Fix thread pool task count not increasing, incorrect ParserFileScopeReference --- include/std/thread_pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/std/thread_pool.h b/include/std/thread_pool.h index f8acf83..ef73bad 100644 --- a/include/std/thread_pool.h +++ b/include/std/thread_pool.h @@ -33,7 +33,7 @@ typedef struct { amal_mutex task_select_mutex; Buffer queued_tasks; bool dead; - int num_finished_queued_tasks; + int num_taken_tasks; } amal_thread_pool; typedef struct { -- cgit v1.2.3