diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index 0179e84ae4..6df7a1e2db 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -285,6 +285,7 @@ int Process::do_exec(String path, Vector arguments, Vector envir { ASSERT(is_ring3()); + dbgprintf("%s(%d) do_exec: thread_count() = %d\n", m_name.characters(), m_pid, thread_count()); // FIXME(Thread): Kill any threads the moment we commit to the exec(). ASSERT(thread_count() == 1);