mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 05:08:14 +00:00
Define which mutexes are blocking and recursive explicitly
This commit is contained in:
+3
-3
@@ -300,10 +300,10 @@ struct CheckerInfo {
|
||||
// too much of a problem in practice
|
||||
BlockingMutex deps_mutex;
|
||||
|
||||
gbMutex lazy_mutex; // Mutex required for lazy type checking of specific files
|
||||
RecursiveMutex lazy_mutex; // Mutex required for lazy type checking of specific files
|
||||
|
||||
gbMutex gen_procs_mutex; // Possibly recursive
|
||||
gbMutex gen_types_mutex; // Possibly recursive
|
||||
RecursiveMutex gen_procs_mutex;
|
||||
RecursiveMutex gen_types_mutex;
|
||||
Map<Array<Entity *> > gen_procs; // Key: Ast * | Identifier -> Entity
|
||||
Map<Array<Entity *> > gen_types; // Key: Type *
|
||||
|
||||
|
||||
Reference in New Issue
Block a user