From d48a5123422f85879727ffece4a1bb48d1f26b50 Mon Sep 17 00:00:00 2001 From: Mr-Wiseguy Date: Sat, 26 Oct 2024 20:19:16 -0400 Subject: [PATCH] Remove commented out line --- ultramodern/src/threads.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ultramodern/src/threads.cpp b/ultramodern/src/threads.cpp index 7730483..812c556 100644 --- a/ultramodern/src/threads.cpp +++ b/ultramodern/src/threads.cpp @@ -260,7 +260,6 @@ extern "C" void osCreateThread(RDRAM_ARG PTR(OSThread) t_, OSId id, PTR(thread_f UltraThreadContext* context = new UltraThreadContext{}; t->context = context; context->host_thread = std::thread{_thread_func, PASS_RDRAM t_, entrypoint, arg, t->context}; - //context->host_thread.detach(); // Wait until the thread is initialized to indicate that it's ready to be started. context->initialized.wait();