mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Replace all queues with MPSCQueue where possible
This commit is contained in:
+2
-3
@@ -446,11 +446,10 @@ struct Checker {
|
||||
|
||||
CheckerContext builtin_ctx;
|
||||
|
||||
MPMCQueue<Entity *> procs_with_deferred_to_check;
|
||||
MPSCQueue<Entity *> procs_with_deferred_to_check;
|
||||
Array<ProcInfo *> procs_to_check;
|
||||
|
||||
// TODO(bill): Technically MPSC queue
|
||||
MPMCQueue<UntypedExprInfo> global_untyped_queue;
|
||||
MPSCQueue<UntypedExprInfo> global_untyped_queue;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user