1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Everywhere: Drop "shared_buffer" in most GUI programs, pledge "recvfd"

Now that WindowServer broadcasts the system theme using an anonymous
file, we need clients to pledge "recvfd" so they can receive it.

Some programs keep the "shared_buffer" pledge since it's still used for
a handful of things.
This commit is contained in:
Andreas Kling 2021-01-16 17:42:31 +01:00
parent d846808122
commit d312011708
59 changed files with 112 additions and 111 deletions

View file

@ -37,14 +37,14 @@
int main(int argc, char** argv)
{
if (pledge("stdio sendfd shared_buffer accept rpath thread unix cpath fattr", nullptr) < 0) {
if (pledge("stdio recvfd sendfd accept rpath thread unix cpath fattr", nullptr) < 0) {
perror("pledge");
return 1;
}
auto app = GUI::Application::construct(argc, argv);
if (pledge("stdio sendfd shared_buffer accept rpath thread unix", nullptr) < 0) {
if (pledge("stdio recvfd sendfd accept rpath thread unix", nullptr) < 0) {
perror("pledge");
return 1;
}
@ -52,7 +52,7 @@ int main(int argc, char** argv)
auto audio_client = Audio::ClientConnection::construct();
audio_client->handshake();
if (pledge("stdio sendfd shared_buffer accept rpath thread", nullptr) < 0) {
if (pledge("stdio recvfd sendfd accept rpath thread", nullptr) < 0) {
perror("pledge");
return 1;
}