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

Kernel: Respect the process umask in open() and mkdir().

This commit is contained in:
Andreas Kling 2019-02-22 02:39:13 +01:00
parent 6d3e12899b
commit f98dcbf1d6
2 changed files with 11 additions and 3 deletions

View file

@ -120,6 +120,8 @@ public:
gid_t egid() const { return m_egid; }
pid_t ppid() const { return m_ppid; }
mode_t umask() const { return m_umask; }
const FarPtr& far_ptr() const { return m_far_ptr; }
FileDescriptor* file_descriptor(int fd);