summaryrefslogtreecommitdiff
path: root/Userland/DevTools/GMLPlayground
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-01-13 01:02:26 +0200
committerAndreas Kling <kling@serenityos.org>2023-01-13 13:41:30 +0100
commite241b47fee775ad9be40c8a219c4ee083ed32947 (patch)
tree74541e1dfe6779fd7e5f7364d45243303379cf89 /Userland/DevTools/GMLPlayground
parent16b6e644d745c2171cdcafb057e42380da258575 (diff)
downloadserenity-e241b47fee775ad9be40c8a219c4ee083ed32947.zip
Userland: Remove a bunch of unveil calls on /sys/kernel/processes
These are not needed anymore since the introduction of the new get_root_session_id syscall.
Diffstat (limited to 'Userland/DevTools/GMLPlayground')
-rw-r--r--Userland/DevTools/GMLPlayground/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/DevTools/GMLPlayground/main.cpp b/Userland/DevTools/GMLPlayground/main.cpp
index f4bfbba8e4..6b9c09ae0e 100644
--- a/Userland/DevTools/GMLPlayground/main.cpp
+++ b/Userland/DevTools/GMLPlayground/main.cpp
@@ -67,7 +67,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::pledge("stdio thread recvfd sendfd cpath rpath wpath unix"));
auto app = TRY(GUI::Application::try_create(arguments));
- TRY(Core::System::unveil("/sys/kernel/processes", "r"));
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/tmp/session/%sid/portal/launch", "rw"));
TRY(Core::System::unveil("/tmp/session/%sid/portal/filesystemaccess", "rw"));