aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-07-25 22:12:24 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 22:12:24 +0200
commit1dfbe97b0a639c91d7727acc443ee2a9c2057920 (patch)
treebf322304531cf56f919c79471b04cdcca0b4e04f /include
parent53d74e58f46ec54b8d9b147876275532d02d97ed (diff)
Fix thread pool task count not increasing, incorrect ParserFileScopeReference
Diffstat (limited to 'include')
-rw-r--r--include/std/thread_pool.h2
1 files changed, 1 insertions, 1 deletions
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 {