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

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
parent 638fe6f84a
commit 5163c5cc63
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 };