diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-05-14 03:05:38 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-14 03:05:38 +0200 |
commit | 173e382182d7f1ad2b132b6e923ef731d6affdf7 (patch) | |
tree | e58abf9c4abdaa046ff4591f0212423181d14b4a /systemd-interfaces.vala | |
parent | 30de7d8520d1dfaa8c46098f972f57961fc91923 (diff) |
unit: record inactive enter/exit timestamps to facilitate syslog lookups
Diffstat (limited to 'systemd-interfaces.vala')
-rw-r--r-- | systemd-interfaces.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/systemd-interfaces.vala b/systemd-interfaces.vala index a95dc01f55..72655d6350 100644 --- a/systemd-interfaces.vala +++ b/systemd-interfaces.vala @@ -88,8 +88,10 @@ public interface Unit : DBus.Object { public abstract string active_state { owned get; } public abstract string sub_state { owned get; } public abstract string fragment_path { owned get; } + public abstract uint64 inactive_exit_timestamp { owned get; } public abstract uint64 active_enter_timestamp { owned get; } public abstract uint64 active_exit_timestamp { owned get; } + public abstract uint64 inactive_enter_timestamp { owned get; } public abstract bool can_start { owned get; } public abstract bool can_reload { owned get; } public abstract JobLink job { owned get; /* FIXME: this setter is a temporary fix to make valac not segfault */ set; } |