1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:17:35 +00:00

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

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 };