Kernel: Expose the signal that stopped a thread via sys$waitpid()

This commit is contained in:
Andreas Kling 2020-01-27 20:47:10 +01:00
commit 5163c5cc63
Notes: sideshowbarker 2024-07-19 09:46:34 +09:00
3 changed files with 11 additions and 2 deletions

View file

@ -485,6 +485,9 @@ private:
u32 m_priority { THREAD_PRIORITY_NORMAL };
u32 m_extra_priority { 0 };
u32 m_priority_boost { 0 };
u8 m_stop_signal { 0 };
bool m_dump_backtrace_on_finalization { false };
bool m_should_die { false };