1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:48:11 +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

@ -64,6 +64,7 @@ struct CProcessStatistics {
String name;
String tty;
String pledge;
String veil;
size_t amount_virtual;
size_t amount_resident;
size_t amount_shared;