summaryrefslogtreecommitdiff
path: root/Userland/Applications/SystemMonitor
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-15 12:14:42 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-15 14:10:32 +0100
commit20915795a8497192132680aaff6a9009e59a4cf2 (patch)
treeccd57710410b13779e5e058507bcce604ee6f650 /Userland/Applications/SystemMonitor
parent0b0514d46bddf56052ca5a892d3a4b20aa8249c1 (diff)
downloadserenity-20915795a8497192132680aaff6a9009e59a4cf2.zip
Everywhere: Pledge "sendfd" in WindowServer client programs
This is needed for the new way we transfer window backing stores.
Diffstat (limited to 'Userland/Applications/SystemMonitor')
-rw-r--r--Userland/Applications/SystemMonitor/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp
index bdf88e44d1..2de95c9a09 100644
--- a/Userland/Applications/SystemMonitor/main.cpp
+++ b/Userland/Applications/SystemMonitor/main.cpp
@@ -105,14 +105,14 @@ static bool can_access_pid(pid_t pid)
int main(int argc, char** argv)
{
- if (pledge("stdio proc shared_buffer accept rpath exec unix cpath fattr", nullptr) < 0) {
+ if (pledge("stdio proc sendfd shared_buffer accept rpath exec unix cpath fattr", nullptr) < 0) {
perror("pledge");
return 1;
}
auto app = GUI::Application::construct(argc, argv);
- if (pledge("stdio proc shared_buffer accept rpath exec", nullptr) < 0) {
+ if (pledge("stdio proc sendfd shared_buffer accept rpath exec", nullptr) < 0) {
perror("pledge");
return 1;
}