summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-11-23 10:59:50 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-23 11:33:36 +0100
commit21a5fb0fa21a92030f68bc6e9df6a9e438355f11 (patch)
tree9883ba94b650d2a6fd97f38942ba40ac3da35694 /Userland/Services/WebContent/main.cpp
parentacc2eccede491e0c34d718e348d76c13c190347c (diff)
downloadserenity-21a5fb0fa21a92030f68bc6e9df6a9e438355f11.zip
LibCore+LibSystem: Move syscall wrappers from LibSystem to LibCore
With this change, System::foo() becomes Core::System::foo(). Since LibCore builds on other systems than SerenityOS, we now have to make sure that wrappers work with just a standard C library underneath.
Diffstat (limited to 'Userland/Services/WebContent/main.cpp')
-rw-r--r--Userland/Services/WebContent/main.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/Userland/Services/WebContent/main.cpp b/Userland/Services/WebContent/main.cpp
index 057c2de950..350995f518 100644
--- a/Userland/Services/WebContent/main.cpp
+++ b/Userland/Services/WebContent/main.cpp
@@ -6,20 +6,20 @@
#include <LibCore/EventLoop.h>
#include <LibCore/LocalServer.h>
+#include <LibCore/System.h>
#include <LibIPC/ClientConnection.h>
#include <LibMain/Main.h>
-#include <LibSystem/Wrappers.h>
#include <WebContent/ClientConnection.h>
ErrorOr<int> serenity_main(Main::Arguments)
{
Core::EventLoop event_loop;
- TRY(System::pledge("stdio recvfd sendfd accept unix rpath", nullptr));
- TRY(System::unveil("/res", "r"));
- TRY(System::unveil("/tmp/portal/request", "rw"));
- TRY(System::unveil("/tmp/portal/image", "rw"));
- TRY(System::unveil("/tmp/portal/websocket", "rw"));
- TRY(System::unveil(nullptr, nullptr));
+ TRY(Core::System::pledge("stdio recvfd sendfd accept unix rpath", nullptr));
+ TRY(Core::System::unveil("/res", "r"));
+ TRY(Core::System::unveil("/tmp/portal/request", "rw"));
+ TRY(Core::System::unveil("/tmp/portal/image", "rw"));
+ TRY(Core::System::unveil("/tmp/portal/websocket", "rw"));
+ TRY(Core::System::unveil(nullptr, nullptr));
auto socket = Core::LocalSocket::take_over_accepted_socket_from_system_server();
VERIFY(socket);