Kernel: Move process signal trampoline address into protected data

This commit is contained in:
Andreas Kling 2021-03-11 13:28:50 +01:00
commit b7b7a48c66
Notes: sideshowbarker 2024-07-18 21:31:33 +09:00
3 changed files with 4 additions and 3 deletions

View file

@ -118,6 +118,7 @@ protected:
bool m_has_execpromises { false };
u32 m_execpromises { 0 };
mode_t m_umask { 022 };
VirtualAddress m_signal_trampoline;
};
class ProcessBase : public ProtectedProcessBase {
@ -544,7 +545,6 @@ private:
String m_name;
OwnPtr<Space> m_space;
VirtualAddress m_signal_trampoline;
RefPtr<ProcessGroup> m_pg;