Merge pull request #2620

6bd4dac6 util: ignore SIGPIPE (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-11-14 14:54:42 +02:00
commit f26e7a84a6
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 2 additions and 1 deletions

View File

@ -148,9 +148,10 @@ namespace tools
}
return r;
#else
/* Only blocks SIGINT and SIGTERM */
/* Only blocks SIGINT, SIGTERM and SIGPIPE */
signal(SIGINT, posix_handler);
signal(SIGTERM, posix_handler);
signal(SIGPIPE, SIG_IGN);
m_handler = t;
return true;
#endif