diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-05-11 22:51:49 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-05-11 22:51:49 +0200 |
commit | b2c23da8cea1987a1a329f5a964d3299b7ca7890 (patch) | |
tree | 66f369f148c30ef8d63b32cc33686b0370c6cbf8 /src/core/manager.h | |
parent | 8b4305c7354f572fa0390b7580ba30af741aa0a5 (diff) |
core: rename SystemdRunningAs to ManagerRunningAs
It's primarily just a property of the Manager object after all, and we
try to refer to PID 1 as "manager" instead of "systemd", hence let's to
stick to this here too.
Diffstat (limited to 'src/core/manager.h')
-rw-r--r-- | src/core/manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/manager.h b/src/core/manager.h index 524cdf97b9..4ef869d14a 100644 --- a/src/core/manager.h +++ b/src/core/manager.h @@ -226,7 +226,7 @@ struct Manager { int pin_cgroupfs_fd; /* Flags */ - SystemdRunningAs running_as; + ManagerRunningAs running_as; ManagerExitCode exit_code:5; bool dispatching_load_queue:1; @@ -297,7 +297,7 @@ struct Manager { const char *unit_log_format_string; }; -int manager_new(SystemdRunningAs running_as, bool test_run, Manager **m); +int manager_new(ManagerRunningAs running_as, bool test_run, Manager **m); Manager* manager_free(Manager *m); int manager_enumerate(Manager *m); |