diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-07-25 22:12:24 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 22:12:24 +0200 |
commit | 1dfbe97b0a639c91d7727acc443ee2a9c2057920 (patch) | |
tree | bf322304531cf56f919c79471b04cdcca0b4e04f /include | |
parent | 53d74e58f46ec54b8d9b147876275532d02d97ed (diff) |
Fix thread pool task count not increasing, incorrect ParserFileScopeReference
Diffstat (limited to 'include')
-rw-r--r-- | include/std/thread_pool.h | 2 |
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 { |