author | Michael Krelin <hacker@klever.net> | 2011-03-20 01:34:13 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2011-03-20 01:34:13 (UTC) |
commit | 372729c9aa74e89d78dc0ab1a6d18a817f3ec6eb (patch) (side-by-side diff) | |
tree | 37652c301333885e0705b35fc8b89519b582b939 | |
parent | b6859c0f505b79a246955ab06763392871459e22 (diff) | |
download | iii-372729c9aa74e89d78dc0ab1a6d18a817f3ec6eb.zip iii-372729c9aa74e89d78dc0ab1a6d18a817f3ec6eb.tar.gz iii-372729c9aa74e89d78dc0ab1a6d18a817f3ec6eb.tar.bz2 |
ignore SIGCHLD in main process
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyefiworker.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eyefiworker.cc b/src/eyefiworker.cc index d87c36e..4038658 100644 --- a/src/eyefiworker.cc +++ b/src/eyefiworker.cc @@ -1,20 +1,20 @@ -#include <sys/wait.h> +#include <signal.h> #include <stdexcept> #include "eyefiworker.h" eyefiworker::eyefiworker() : eyefiService(SOAP_IO_STORE|SOAP_IO_KEEPALIVE) { bind_flags = SO_REUSEADDR; max_keep_alive = 0; } int eyefiworker::run(int port) { if(!soap_valid_socket(bind(0,port,5))) throw std::runtime_error("failed to bind()"); + signal(SIGCHLD,SIG_IGN); while(true) { - while(waitpid(-1,0,WNOHANG)>0); if(!soap_valid_socket(accept())) throw std::runtime_error("failed to accept()"); pid_t p = fork(); if(p<0) throw std::runtime_error("failed to fork()"); if(!p) { (void)serve(); |