Kernel: Bump process thread count to a 32-bit value

We should support more than 65535 threads, after all. :^)
This commit is contained in:
Andreas Kling 2020-08-17 16:34:08 +02:00
parent b6e18133ae
commit 9ddd540ca9
Notes: sideshowbarker 2024-07-19 03:29:05 +09:00

View file

@ -657,7 +657,7 @@ private:
RingLevel m_ring { Ring0 };
u8 m_termination_status { 0 };
u8 m_termination_signal { 0 };
Atomic<u16> m_thread_count { 0 };
Atomic<u32> m_thread_count { 0 };
bool m_dead { false };
bool m_profiling { false };