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

Kernel: Remove some unused Process members

This commit is contained in:
Andreas Kling 2020-01-04 19:11:18 +01:00
parent 3a27790fa7
commit d4761762f2

View file

@ -377,12 +377,8 @@ private:
pid_t m_ppid { 0 };
mode_t m_umask { 022 };
static void notify_waiters(pid_t waitee, int exit_status, int signal);
HashTable<gid_t> m_extra_gids;
int m_next_tid { 0 };
RefPtr<ProcessTracer> m_tracer;
OwnPtr<ELFLoader> m_elf_loader;