aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-01-03 15:50:31 +0000
committergingerBill <bill@gingerbill.org>2023-01-03 15:50:31 +0000
commitdc317c8cd83ca183cf53b2bb3d4c7dbbd0f16668 (patch)
tree8d12837202f5a3e7bbe28f4efae126950f7c2295 /src
parent774fea1e63941473b9899a50585e0f171184a147 (diff)
Make `BlockingMutex`
Diffstat (limited to 'src')
-rw-r--r--src/checker.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker.hpp b/src/checker.hpp
index 226f69c1c..d647cd67f 100644
--- a/src/checker.hpp
+++ b/src/checker.hpp
@@ -356,7 +356,7 @@ struct CheckerInfo {
RecursiveMutex lazy_mutex; // Mutex required for lazy type checking of specific files
- RecursiveMutex gen_procs_mutex;
+ BlockingMutex gen_procs_mutex;
RecursiveMutex gen_types_mutex;
PtrMap<Ast *, GenProcsData *> gen_procs; // Key: Ast * | Identifier -> Entity
PtrMap<Type *, Array<Entity *> > gen_types;