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

Kernel+Userland: Remove the nfds entry from /sys/kernel/processes

`process.fds()` is protected by a Mutex, which causes issues when we try
to acquire it while holding a Spinlock. Since nothing seems to use this
value, let's just remove it entirely for now.
This commit is contained in:
Tim Schumacher 2023-04-21 10:33:32 +02:00 committed by Andreas Kling
parent ce483fb2c9
commit 12ce6ef3d7
4 changed files with 0 additions and 5 deletions

View file

@ -43,7 +43,6 @@ struct ProcessStatistics {
uid_t uid;
gid_t gid;
pid_t ppid;
unsigned nfds;
bool kernel;
DeprecatedString name;
DeprecatedString executable;