summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--logforwarder/src/apps/vespa-logforwarder-start/.gitignore2
-rw-r--r--vespalib/src/vespa/vespalib/util/sig_catch.cpp12
-rw-r--r--vespalib/src/vespa/vespalib/util/sig_catch.h10
3 files changed, 0 insertions, 24 deletions
diff --git a/logforwarder/src/apps/vespa-logforwarder-start/.gitignore b/logforwarder/src/apps/vespa-logforwarder-start/.gitignore
index 64d78991a4c..bfa5aca99b1 100644
--- a/logforwarder/src/apps/vespa-logforwarder-start/.gitignore
+++ b/logforwarder/src/apps/vespa-logforwarder-start/.gitignore
@@ -1,3 +1 @@
vespa-logforwarder-start
-config-logforwarder.cpp
-config-logforwarder.h
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