diff options
author | Michael Olbrich <m.olbrich@pengutronix.de> | 2012-02-08 10:10:34 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-02-08 17:10:38 +0100 |
commit | bb242b7b5277f5db4a01be905f26eccd382ff1e0 (patch) | |
tree | 99cb256985193d596061bd585cc71e7155b43499 /src/dbus-service.c | |
parent | aa704ba8c2a1adce92ba8a154f70f1bdc950be1e (diff) |
service: introduce WatchdogSec and hook up the watchdog with the existing failure logic
Diffstat (limited to 'src/dbus-service.c')
-rw-r--r-- | src/dbus-service.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dbus-service.c b/src/dbus-service.c index 738dc7bccd..fedfc1d523 100644 --- a/src/dbus-service.c +++ b/src/dbus-service.c @@ -43,6 +43,7 @@ " <property name=\"NotifyAccess\" type=\"s\" access=\"read\"/>\n" \ " <property name=\"RestartUSec\" type=\"t\" access=\"read\"/>\n" \ " <property name=\"TimeoutUSec\" type=\"t\" access=\"read\"/>\n" \ + " <property name=\"WatchdogUSec\" type=\"t\" access=\"read\"/>\n" \ " <property name=\"WatchdogTimestamp\" type=\"t\" access=\"read\"/>\n" \ " <property name=\"WatchdogTimestampMonotonic\" type=\"t\" access=\"read\"/>\n" \ BUS_EXEC_COMMAND_INTERFACE("ExecStartPre") \ @@ -119,6 +120,7 @@ static const BusProperty bus_service_properties[] = { { "NotifyAccess", bus_service_append_notify_access, "s", offsetof(Service, notify_access) }, { "RestartUSec", bus_property_append_usec, "t", offsetof(Service, restart_usec) }, { "TimeoutUSec", bus_property_append_usec, "t", offsetof(Service, timeout_usec) }, + { "WatchdogUSec", bus_property_append_usec, "t", offsetof(Service, watchdog_usec) }, { "WatchdogTimestamp", bus_property_append_usec, "t", offsetof(Service, watchdog_timestamp.realtime) }, { "WatchdogTimestampMonotonic",bus_property_append_usec, "t", offsetof(Service, watchdog_timestamp.monotonic) }, BUS_EXEC_COMMAND_PROPERTY("ExecStartPre", offsetof(Service, exec_command[SERVICE_EXEC_START_PRE]), true ), |