hook up demon2 initialization to base layer entry point

This commit is contained in:
Ryan Fleury
2024-03-05 14:27:40 -08:00
parent 0c436f0d5b
commit 4074551a1a
4 changed files with 8 additions and 5 deletions
+2 -2
View File
@@ -941,7 +941,7 @@ internal void
txti_mut_thread_entry_point(void *p)
{
U64 mut_thread_idx = (U64)p;
ProfThreadName("[txti] mut #%I64u", mut_thread_idx);
ThreadNameF("[txti] mut #%I64u", mut_thread_idx);
TXTI_MutThread *mut_thread = &txti_state->mut_threads[mut_thread_idx];
for(;;)
{
@@ -1246,7 +1246,7 @@ txti_mut_thread_entry_point(void *p)
internal void
txti_detector_thread_entry_point(void *p)
{
ProfThreadName("[txti] detector");
ThreadNameF("[txti] detector");
for(;;)
{
if(ins_atomic_u64_eval(&txti_state->detector_thread_enabled))