From 280a29cc95b832b167fa46862f6a79c2dfc358a3 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 11 May 2016 12:46:22 -0400 Subject: [PATCH] Revert "add SA_NOCLDWAIT to SIGCHLD flags when xwayland module loads" This reverts commit 66a3fcb0130e2332ef54c8e67a8377f086a6f372. fix T3599 --- src/modules/xwayland/e_mod_main.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c index b43e3113e..3e5c895f0 100644 --- a/src/modules/xwayland/e_mod_main.c +++ b/src/modules/xwayland/e_mod_main.c @@ -448,11 +448,6 @@ E_API E_Module_Api e_modapi = { E_MODULE_API_VERSION, "XWayland" }; E_API void * e_modapi_init(E_Module *m) { - struct sigaction sa; - - sigaction(SIGCHLD, NULL, &sa); - sa.sa_flags |= SA_NOCLDWAIT; - sigaction(SIGCHLD, &sa, NULL); return xwl_init(m); }