Temporarily un-ignore SIGCHLD signals, as Qt needs them to function

* The downside is it means any programs launched by renderdoc will be
  defunct zombie processes until qrenderdoc closes.
This commit is contained in:
baldurk
2017-02-24 16:51:49 +00:00
parent 4dec05cb2b
commit 0ff1ff0d03
+1 -1
View File
@@ -350,7 +350,7 @@ static pid_t RunProcess(const char *app, const char *workingDir, const char *cmd
}
// don't care about child processes, just ignore them
signal(SIGCHLD, SIG_IGN);
// signal(SIGCHLD, SIG_IGN);
pid_t childPid = fork();
if(childPid == 0)