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

SystemMonitor: Show process unveil() state as "Veil"

A process has one of three veil states:

- None: unveil() has never been called.
- Dropped: unveil() has been called, and can be called again.
- Locked: unveil() has been called, and cannot be called again.
This commit is contained in:
Andreas Kling 2020-01-21 18:56:23 +01:00
parent edf509c19e
commit 66598f60fe
5 changed files with 25 additions and 1 deletions

View file

@ -61,6 +61,7 @@ public:
CleanInode,
PurgeableVolatile,
PurgeableNonvolatile,
Veil,
Pledge,
Syscalls,
InodeFaults,
@ -100,6 +101,7 @@ private:
String state;
String user;
String pledge;
String veil;
u32 priority;
u32 effective_priority;
size_t amount_virtual;