diff --git a/Frameworks/document/src/watch.cc b/Frameworks/document/src/watch.cc index 74bda8bc..e88d3c0a 100644 --- a/Frameworks/document/src/watch.cc +++ b/Frameworks/document/src/watch.cc @@ -225,7 +225,6 @@ namespace document { oak::set_thread_name("document::watch_server_t"); - signal(SIGPIPE, SIG_IGN); event_queue = kqueue(); struct kevent changeList; diff --git a/Frameworks/network/src/tbz.cc b/Frameworks/network/src/tbz.cc index 313a1442..11bb7705 100644 --- a/Frameworks/network/src/tbz.cc +++ b/Frameworks/network/src/tbz.cc @@ -13,8 +13,6 @@ namespace network { if(io::process_t process = io::spawn(std::vector{ "/usr/bin/tar", "-jxmkC", dest.c_str(), "--strip-components", "1" })) { - signal(SIGPIPE, SIG_IGN); - input = process.in; output = process.out;