Revert "add SA_NOCLDWAIT to SIGCHLD flags when xwayland module loads"

This reverts commit 66a3fcb013.

fix T3599
This commit is contained in:
Mike Blumenkrantz 2016-05-11 12:46:22 -04:00
parent f2ad686fc3
commit 280a29cc95
1 changed files with 0 additions and 5 deletions

View File

@ -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);
}