mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 23:22:52 +00:00
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.
This commit is contained in:
parent
acc2eccede
commit
21a5fb0fa2
Notes:
sideshowbarker
2024-07-18 00:49:23 +09:00
Author: https://github.com/awesomekling
Commit: 21a5fb0fa2
32 changed files with 165 additions and 173 deletions
|
@ -7,19 +7,19 @@
|
|||
#include "ClientConnection.h"
|
||||
#include <LibCore/EventLoop.h>
|
||||
#include <LibCore/LocalServer.h>
|
||||
#include <LibCore/System.h>
|
||||
#include <LibIPC/ClientConnection.h>
|
||||
#include <LibMain/Main.h>
|
||||
#include <LibSystem/Wrappers.h>
|
||||
|
||||
ErrorOr<int> serenity_main(Main::Arguments)
|
||||
{
|
||||
Core::EventLoop event_loop;
|
||||
TRY(System::pledge("stdio unix rpath recvfd", nullptr));
|
||||
TRY(Core::System::pledge("stdio unix rpath recvfd", nullptr));
|
||||
|
||||
auto socket = Core::LocalSocket::take_over_accepted_socket_from_system_server();
|
||||
IPC::new_client_connection<LanguageServers::Shell::ClientConnection>(socket.release_nonnull(), 1);
|
||||
TRY(System::pledge("stdio rpath recvfd", nullptr));
|
||||
TRY(System::unveil("/etc/passwd", "r"));
|
||||
TRY(Core::System::pledge("stdio rpath recvfd", nullptr));
|
||||
TRY(Core::System::unveil("/etc/passwd", "r"));
|
||||
|
||||
return event_loop.exec();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue