diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-03-01 16:24:19 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-03-02 12:15:25 +0100 |
commit | 5ad096b3f1331b175340129a8c9a5a9d711e5415 (patch) | |
tree | 41896760dde9b0ca2d45d04484c4a2308a600b0e /src/core/socket.h | |
parent | 606303a93ea52a70ebba55bb3152820e630f2164 (diff) |
core: expose consumed CPU time per unit
This adds support for showing the accumulated consumed CPU time per-unit
in the "systemctl status" output. The property is also readable via the
bus.
Diffstat (limited to 'src/core/socket.h')
-rw-r--r-- | src/core/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/socket.h b/src/core/socket.h index 5acf214e1c..fa3ebdafa0 100644 --- a/src/core/socket.h +++ b/src/core/socket.h @@ -166,6 +166,8 @@ struct Socket { bool selinux_context_from_net; char *user, *group; + + bool reset_cpu_usage:1; }; /* Called from the service code when collecting fds */ |