Replace all queues with MPSCQueue where possible

This commit is contained in:
gingerBill
2023-01-12 13:11:17 +00:00
parent b470ceb470
commit cbe3791b42
5 changed files with 26 additions and 20 deletions
+2 -3
View File
@@ -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;
};