Move raddbg string stuff to a thread-safe queue

This commit is contained in:
gingerBill
2025-05-07 14:26:10 +01:00
parent 0c4046b9ea
commit ea65a7b870
4 changed files with 109 additions and 86 deletions
+1
View File
@@ -173,6 +173,7 @@ gb_internal bool lb_init_generator(lbGenerator *gen, Checker *c) {
mpsc_init(&gen->entities_to_correct_linkage, heap_allocator());
mpsc_init(&gen->objc_selectors, heap_allocator());
mpsc_init(&gen->objc_classes, heap_allocator());
mpsc_init(&gen->raddebug_section_strings, heap_allocator());
return true;
}