From: licunlong Date: Thu, 15 Jun 2023 02:47:32 +0000 (+0800) Subject: core/unit: add get_timeout_start_usec in UnitVTable and define it for service X-Git-Tag: v254-rc1~189^2~1 X-Git-Url: http://git-history.diyao.me/?a=commitdiff_plain;h=f5a9d2ee2a849aca1f2d15485d020142ff33cc30;p=systemd%2F.git core/unit: add get_timeout_start_usec in UnitVTable and define it for service --- diff --git a/src/core/service.c b/src/core/service.c index 38f8745674..171e091dff 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 f2d4fd6a4b..3f1f58d600 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);