1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:07:34 +00:00

Kernel: Move process signal trampoline address into protected data

This commit is contained in:
Andreas Kling 2021-03-11 13:28:50 +01:00
parent 08e0e2eb41
commit b7b7a48c66
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;