diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2016-05-11 12:46:22 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2016-05-11 12:49:53 -0400 |
commit | 280a29cc95b832b167fa46862f6a79c2dfc358a3 (patch) | |
tree | 5ba707ccaaae2a87d98923d2996715e489376d7b | |
parent | f2ad686fc3e7f4a5199e519e7c6ef0b1bbafad6e (diff) | |
download | enlightenment-280a29cc95b832b167fa46862f6a79c2dfc358a3.tar.gz |
Revert "add SA_NOCLDWAIT to SIGCHLD flags when xwayland module loads"
This reverts commit 66a3fcb0130e2332ef54c8e67a8377f086a6f372.
fix T3599
-rw-r--r-- | src/modules/xwayland/e_mod_main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c index b43e3113e7..3e5c895f0f 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); } |