summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibThreading/Thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibThreading/Thread.cpp')
-rw-r--r--Userland/Libraries/LibThreading/Thread.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibThreading/Thread.cpp b/Userland/Libraries/LibThreading/Thread.cpp
index 7659793c29..d62684de98 100644
--- a/Userland/Libraries/LibThreading/Thread.cpp
+++ b/Userland/Libraries/LibThreading/Thread.cpp
@@ -45,6 +45,7 @@ void Threading::Thread::start()
VERIFY(rc == 0);
}
dbgln("Started thread \"{}\", tid = {}", m_thread_name, m_tid);
+ m_started = true;
}
void Threading::Thread::detach()