From 4f9b6a88a6dd26c0dca188936573c34c112c7d74 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 1 Mar 2019 16:16:23 +0100 Subject: [PATCH] WindowServer: Use SA_NOCLDWAIT. --- WindowServer/main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/WindowServer/main.cpp b/WindowServer/main.cpp index 2ffa3957f8..31c7dd04ca 100644 --- a/WindowServer/main.cpp +++ b/WindowServer/main.cpp @@ -1,9 +1,21 @@ #include #include #include +#include +#include int main(int, char**) { + struct sigaction act; + memset(&act, 0, sizeof(act)); + act.sa_flags = SA_NOCLDWAIT; + act.sa_handler = SIG_IGN; + int rc = sigaction(SIGCHLD, &act, nullptr); + if (rc < 0) { + perror("sigaction"); + return 1; + } + WSMessageLoop loop; WSScreen screen(1024, 768); WSWindowManager window_manager;