1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:07:44 +00:00

CrashDaemon: Use pledge

This commit is contained in:
Andreas Kling 2021-01-11 19:03:09 +01:00
parent 5c73c1bff8
commit e1cc2acded

View file

@ -74,6 +74,11 @@ static void launch_crash_reporter(const String& coredump_path)
int main()
{
if (pledge("stdio rpath proc exec", nullptr) < 0) {
perror("pledge");
return 1;
}
Core::DirectoryWatcher watcher { "/tmp/coredump" };
while (true) {
auto event = watcher.wait_for_event();