From 9ddd540ca98b1278feb31348f0aee8e0b2d88ee2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 17 Aug 2020 16:34:08 +0200 Subject: [PATCH] Kernel: Bump process thread count to a 32-bit value We should support more than 65535 threads, after all. :^) --- Kernel/Process.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Process.h b/Kernel/Process.h index 73dd12c762..8ec4a59f8c 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -657,7 +657,7 @@ private: RingLevel m_ring { Ring0 }; u8 m_termination_status { 0 }; u8 m_termination_signal { 0 }; - Atomic m_thread_count { 0 }; + Atomic m_thread_count { 0 }; bool m_dead { false }; bool m_profiling { false };