summaryrefslogtreecommitdiff
path: root/Applications/SystemMonitor/ProcessModel.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-01-21 18:56:23 +0100
committerAndreas Kling <kling@serenityos.org>2020-01-21 18:56:23 +0100
commit66598f60fe3dd01625baf3fd8b85bc8c01db7586 (patch)
tree869973e90c5169533083e00b62bf0e86dacbc486 /Applications/SystemMonitor/ProcessModel.h
parentedf509c19e8b75e4773930c9a8d0f4dd2912197e (diff)
downloadserenity-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.h2
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;