mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:07:36 +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:
parent
b6e18133ae
commit
9ddd540ca9
1 changed files with 1 additions and 1 deletions
|
@ -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 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue