summaryrefslogtreecommitdiffstats
path: root/configd/src/apps/sentinel/service.h
diff options
context:
space:
mode:
Diffstat (limited to 'configd/src/apps/sentinel/service.h')
-rw-r--r--configd/src/apps/sentinel/service.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/configd/src/apps/sentinel/service.h b/configd/src/apps/sentinel/service.h
index d6bdbadd8f6..6419fdd7268 100644
--- a/configd/src/apps/sentinel/service.h
+++ b/configd/src/apps/sentinel/service.h
@@ -1,16 +1,14 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
+#include "metrics.h"
#include <vespa/vespalib/stllike/string.h>
#include <vespa/config-sentinel.h>
#include <list>
-#include "metrics.h"
-
using cloud::config::SentinelConfig;
-namespace config {
-namespace sentinel {
+namespace config::sentinel {
class OutputConnection;
@@ -49,11 +47,14 @@ public:
~Service();
Service(const SentinelConfig::Service& config,
const SentinelConfig::Application& application,
- std::list<OutputConnection *> &ocs,
- StartMetrics &metrics);
+ std::list<OutputConnection *> &ocs,
+ StartMetrics &metrics);
void reconfigure(const SentinelConfig::Service& config);
int pid() const { return _pid; }
- int terminate(bool catchable);
+ int terminate(bool catchable, bool dumpState);
+ int terminate() {
+ return terminate(true, false);
+ }
int start();
void youExited(int status); // Call this if waitpid says it exited
const vespalib::string & name() const;
@@ -67,6 +68,4 @@ public:
void incrementRestartPenalty();
};
-} // end namespace sentinel
-} // end namespace config
-
+}