CrashDaemon: Use pledge

This commit is contained in:
Andreas Kling 2021-01-11 19:03:09 +01:00
parent 5c73c1bff8
commit e1cc2acded
Notes: sideshowbarker 2024-07-18 23:56:28 +09:00

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();