diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2013-02-28 00:14:40 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2013-02-28 00:14:40 +0100 |
commit | 25cee55076a7c00c0a584731c2705686cc843210 (patch) | |
tree | 2215c0a44f149e089b8dc9d7e4eaa746003a98c4 /src/core/unit.h | |
parent | 637f8b8eb5decb6dd626276ea9e3a545c895e086 (diff) |
core: add manager_status_printf()
unit_status_printf() checks the state of the manager, not of the unit
as such. Move it to manager.c and rename it to manager_status_printf().
Temporarily keep unit_status_printf as a wrapper macro.
Diffstat (limited to 'src/core/unit.h')
-rw-r--r-- | src/core/unit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/unit.h b/src/core/unit.h index 17a5a5f0d9..84aabd5723 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -520,7 +520,8 @@ int unit_add_node_link(Unit *u, const char *what, bool wants); int unit_coldplug(Unit *u); -void unit_status_printf(Unit *u, const char *status, const char *format, ...); +#define unit_status_printf(u, st, fo, ...) \ + manager_status_printf((u)->manager, st, fo, __VA_ARGS__) bool unit_need_daemon_reload(Unit *u); |