summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorArne Juul <arnej@yahoo-inc.com>2017-10-09 10:58:08 +0000
committerArne Juul <arnej@yahoo-inc.com>2017-10-09 10:58:08 +0000
commitde07f516607a7c3ed30801f44525634a0875f45e (patch)
tree5bdcf54efee46dc580184d4887a73bed1d84949f /vespalib
parent3c7957089c31e706b488056e2124a753e31365f7 (diff)
GC unused stuff
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/sig_catch.cpp12
-rw-r--r--vespalib/src/vespa/vespalib/util/sig_catch.h10
2 files changed, 0 insertions, 22 deletions
diff --git a/vespalib/src/vespa/vespalib/util/sig_catch.cpp b/vespalib/src/vespa/vespalib/util/sig_catch.cpp
index b1ffecdf24c..d5aa9f9cd81 100644
--- a/vespalib/src/vespa/vespalib/util/sig_catch.cpp
+++ b/vespalib/src/vespa/vespalib/util/sig_catch.cpp
@@ -20,16 +20,4 @@ SigCatch::receivedStopSignal()
SignalHandler::TERM.check());
}
-bool
-SigCatch::receivedChildSignal()
-{
- return SignalHandler::CHLD.check();
-}
-
-void
-SigCatch::clearChildSignalFlag()
-{
- SignalHandler::CHLD.clear();
-}
-
} // namespace vespalib
diff --git a/vespalib/src/vespa/vespalib/util/sig_catch.h b/vespalib/src/vespa/vespalib/util/sig_catch.h
index 80a52545801..96c74ee4d07 100644
--- a/vespalib/src/vespa/vespalib/util/sig_catch.h
+++ b/vespalib/src/vespa/vespalib/util/sig_catch.h
@@ -20,16 +20,6 @@ public:
* Check if a signal to stop has been received.
**/
bool receivedStopSignal();
-
- /**
- * Check for child process events
- **/
- bool receivedChildSignal();
-
- /**
- * Clear flag for child process events
- **/
- void clearChildSignalFlag();
};
} // namespace vespalib