2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Initialize variable in sigset_t. Thanks Steve

for pointing this out.



[SVN r77192]
This commit is contained in:
K. Noel Belcourt
2012-03-03 22:31:51 +00:00
parent 0ec332fea3
commit baa8a64459

View File

@@ -269,6 +269,7 @@ int main( int argc, char * * argv, char * * arg_environ )
sigaddset(&sigmask, SIGCHLD);
sigprocmask(SIG_BLOCK, &sigmask, NULL);
sa.sa_flags = 0;
sa.sa_mask = 0;
sa.sa_handler = child_sig_handler;
sigaction(SIGCHLD, &sa, NULL);
sigemptyset(&empty_sigmask);