kernel32: No need to reset SIGCHLD because we're not changing it anymore.
This commit is contained in:
parent
8780571698
commit
f658feb70f
|
@ -1544,7 +1544,6 @@ static int fork_and_exec( const char *filename, const WCHAR *cmdline, const WCHA
|
||||||
|
|
||||||
/* Reset signals that we previously set to SIG_IGN */
|
/* Reset signals that we previously set to SIG_IGN */
|
||||||
signal( SIGPIPE, SIG_DFL );
|
signal( SIGPIPE, SIG_DFL );
|
||||||
signal( SIGCHLD, SIG_DFL );
|
|
||||||
|
|
||||||
if (newdir) chdir(newdir);
|
if (newdir) chdir(newdir);
|
||||||
|
|
||||||
|
@ -1835,7 +1834,6 @@ static pid_t exec_loader( LPCWSTR cmd_line, unsigned int flags, int socketfd,
|
||||||
|
|
||||||
/* Reset signals that we previously set to SIG_IGN */
|
/* Reset signals that we previously set to SIG_IGN */
|
||||||
signal( SIGPIPE, SIG_DFL );
|
signal( SIGPIPE, SIG_DFL );
|
||||||
signal( SIGCHLD, SIG_DFL );
|
|
||||||
|
|
||||||
sprintf( socket_env, "WINESERVERSOCKET=%u", socketfd );
|
sprintf( socket_env, "WINESERVERSOCKET=%u", socketfd );
|
||||||
sprintf( preloader_reserve, "WINEPRELOADRESERVE=%lx-%lx",
|
sprintf( preloader_reserve, "WINEPRELOADRESERVE=%lx-%lx",
|
||||||
|
|
Loading…
Reference in New Issue