Revert "rootston: Reap child processes"

This reverts commit b6ed1f29a4.

This commit breaks xwayland.
This commit is contained in:
emersion 2018-07-29 09:18:51 +01:00
parent f1b65b34a6
commit 067a496c8b
1 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,5 @@
#define _POSIX_C_SOURCE 200112L
#include <assert.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <wayland-server.h>
@ -16,11 +15,6 @@
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();