diff options
author | Andreas Kling <kling@serenityos.org> | 2020-01-21 18:56:23 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-01-21 18:56:23 +0100 |
commit | 66598f60fe3dd01625baf3fd8b85bc8c01db7586 (patch) | |
tree | 869973e90c5169533083e00b62bf0e86dacbc486 /Applications/SystemMonitor/ProcessModel.h | |
parent | edf509c19e8b75e4773930c9a8d0f4dd2912197e (diff) | |
download | serenity-66598f60fe3dd01625baf3fd8b85bc8c01db7586.zip |
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.
Diffstat (limited to 'Applications/SystemMonitor/ProcessModel.h')
-rw-r--r-- | Applications/SystemMonitor/ProcessModel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Applications/SystemMonitor/ProcessModel.h b/Applications/SystemMonitor/ProcessModel.h index f99244f6dc..5d25594264 100644 --- a/Applications/SystemMonitor/ProcessModel.h +++ b/Applications/SystemMonitor/ProcessModel.h @@ -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; |