aboutsummaryrefslogtreecommitdiff
path: root/rootston/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'rootston/main.c')
-rw-r--r--rootston/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/rootston/main.c b/rootston/main.c
index cc3ffd3e..6f4e2612 100644
--- a/rootston/main.c
+++ b/rootston/main.c
@@ -1,5 +1,6 @@
#define _POSIX_C_SOURCE 200112L
#include <assert.h>
+#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <wayland-server.h>
@@ -15,6 +16,11 @@
struct roots_server server = { 0 };
int main(int argc, char **argv) {
+ if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {
+ wlr_log_errno(WLR_ERROR, "Unable to install SIGCHLD handler");
+ return 1;
+ }
+
wlr_log_init(WLR_DEBUG, NULL);
server.config = roots_config_create_from_args(argc, argv);
server.wl_display = wl_display_create();