mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-15 22:11:28 -07:00
further debugging / logging / work on tester, trynig to get to the bottom of nondeterministic rdi generation
This commit is contained in:
@@ -40,7 +40,7 @@ ts_init(void)
|
||||
ts_shared->u2t_ring_base = push_array_no_zero(arena, U8, ts_shared->u2t_ring_size);
|
||||
ts_shared->u2t_ring_mutex = os_mutex_alloc();
|
||||
ts_shared->u2t_ring_cv = os_condition_variable_alloc();
|
||||
ts_shared->task_threads_count = os_get_system_info()->logical_processor_count-1;
|
||||
ts_shared->task_threads_count = Max(1, os_get_system_info()->logical_processor_count-1);
|
||||
ts_shared->task_threads = push_array(arena, TS_TaskThread, ts_shared->task_threads_count);
|
||||
for(U64 idx = 0; idx < ts_shared->task_threads_count; idx += 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user