mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-26 13:35:00 -07:00
complete first pass of fuzzy matching symbol lister for go-to-name, and setting function breakpoints
This commit is contained in:
@@ -412,7 +412,7 @@ txt_init(void)
|
||||
txt_shared->u2p_ring_base = push_array_no_zero(arena, U8, txt_shared->u2p_ring_size);
|
||||
txt_shared->u2p_ring_cv = os_condition_variable_alloc();
|
||||
txt_shared->u2p_ring_mutex = os_mutex_alloc();
|
||||
txt_shared->parse_thread_count = Min(4, os_logical_core_count()-1);
|
||||
txt_shared->parse_thread_count = Clamp(1, os_logical_core_count()-1, 4);
|
||||
txt_shared->parse_threads = push_array(arena, OS_Handle, txt_shared->parse_thread_count);
|
||||
for(U64 idx = 0; idx < txt_shared->parse_thread_count; idx += 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user