mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user