mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 00:27:43 +00:00
Kernel: Move process umask into protected data :^)
This commit is contained in:
parent
90c0f9664e
commit
08e0e2eb41
3 changed files with 4 additions and 5 deletions
|
@ -117,6 +117,7 @@ protected:
|
|||
u32 m_promises { 0 };
|
||||
bool m_has_execpromises { false };
|
||||
u32 m_execpromises { 0 };
|
||||
mode_t m_umask { 022 };
|
||||
};
|
||||
|
||||
class ProcessBase : public ProtectedProcessBase {
|
||||
|
@ -595,8 +596,6 @@ private:
|
|||
|
||||
RefPtr<TTY> m_tty;
|
||||
|
||||
mode_t m_umask { 022 };
|
||||
|
||||
WeakPtr<Region> m_master_tls_region;
|
||||
size_t m_master_tls_size { 0 };
|
||||
size_t m_master_tls_alignment { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue