diff --git a/src/core/service.c b/src/core/service.c index 38f87456749..171e091dff1 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -4607,6 +4607,11 @@ static int service_get_timeout(Unit *u, usec_t *timeout) { return 1; } +static usec_t service_get_timeout_start_usec(Unit *u) { + Service *s = SERVICE(ASSERT_PTR(u)); + return s->timeout_start_usec; +} + static bool pick_up_pid_from_bus_name(Service *s) { assert(s); @@ -5145,6 +5150,7 @@ const UnitVTable service_vtable = { .bus_commit_properties = bus_service_commit_properties, .get_timeout = service_get_timeout, + .get_timeout_start_usec = service_get_timeout_start_usec, .needs_console = service_needs_console, .exit_status = service_exit_status, .status_text = service_status_text, diff --git a/src/core/unit.h b/src/core/unit.h index f2d4fd6a4b2..3f1f58d6000 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -715,6 +715,9 @@ typedef struct UnitVTable { /* Returns the next timeout of a unit */ int (*get_timeout)(Unit *u, usec_t *timeout); + /* Returns the start timeout of a unit */ + usec_t (*get_timeout_start_usec)(Unit *u); + /* Returns the main PID if there is any defined, or 0. */ pid_t (*main_pid)(Unit *u);