mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 13:30:31 +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
Notes:
sideshowbarker
2024-07-19 03:29:05 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/9ddd540ca98
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…
Reference in a new issue