diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-09 02:31:42 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-12-09 02:31:42 +0100 |
commit | b1491eba40715438b0ac874f2be79d5622b971e1 (patch) | |
tree | a3c0dcacce75033c4c7662324f70c0d1f946dd4f /src/core/unit.c | |
parent | dab5bf859900c0abdbf78c584e4aed42a19768cd (diff) |
core: rename unit_destroy_cgroup() to unit_destroy_cgroup_if_empty() since it's not quite as destructive as it sounds nowadays
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index 7daf170e29..43280ecd2f 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -1783,7 +1783,7 @@ void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_su /* Make sure the cgroup is always removed when we become inactive */ if (UNIT_IS_INACTIVE_OR_FAILED(ns)) - unit_destroy_cgroup(u); + unit_destroy_cgroup_if_empty(u); /* Note that this doesn't apply to RemainAfterExit services exiting * successfully, since there's no change of state in that case. Which is |