diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-29 10:49:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-29 10:49:51 -0400 |
commit | e67cb8c07ced35be9dc009effb75af05dc4403e4 (patch) | |
tree | 3ee260d16e909057b55a8eeaa0904136c429a47a | |
parent | 5734d0530c7e320860013cb9465a2e15f5238fb6 (diff) | |
parent | 067a496c8b429a8fe41136c651c62156f2a2a368 (diff) |
Merge pull request #1164 from emersion/fix-xwayland
Revert "rootston: Reap child processes"
-rw-r--r-- | rootston/main.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/rootston/main.c b/rootston/main.c index 6f4e2612..cc3ffd3e 100644 --- a/rootston/main.c +++ b/rootston/main.c @@ -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(); |