1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-08 11:27:32 +03:00

core: sort includes of manager.[ch] according to CODING_STYLE

This commit is contained in:
Lennart Poettering 2015-09-22 23:24:07 +02:00
parent 9d66db1d03
commit 400f1a33cf
2 changed files with 38 additions and 38 deletions

View File

@ -19,19 +19,19 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>. along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/ ***/
#include <dirent.h>
#include <errno.h> #include <errno.h>
#include <string.h> #include <fcntl.h>
#include <linux/kd.h>
#include <signal.h> #include <signal.h>
#include <string.h>
#include <sys/epoll.h>
#include <sys/inotify.h>
#include <sys/ioctl.h>
#include <sys/reboot.h>
#include <sys/timerfd.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <unistd.h> #include <unistd.h>
#include <sys/inotify.h>
#include <sys/epoll.h>
#include <sys/reboot.h>
#include <sys/ioctl.h>
#include <linux/kd.h>
#include <fcntl.h>
#include <dirent.h>
#include <sys/timerfd.h>
#ifdef HAVE_AUDIT #ifdef HAVE_AUDIT
#include <libaudit.h> #include <libaudit.h>
@ -40,40 +40,40 @@
#include "sd-daemon.h" #include "sd-daemon.h"
#include "sd-messages.h" #include "sd-messages.h"
#include "hashmap.h"
#include "macro.h"
#include "strv.h"
#include "log.h"
#include "util.h"
#include "mkdir.h"
#include "ratelimit.h"
#include "locale-setup.h"
#include "unit-name.h"
#include "missing.h"
#include "rm-rf.h"
#include "path-lookup.h"
#include "special.h"
#include "exit-status.h"
#include "virt.h"
#include "watchdog.h"
#include "path-util.h"
#include "audit-fd.h" #include "audit-fd.h"
#include "boot-timestamps.h" #include "boot-timestamps.h"
#include "env-util.h"
#include "bus-common-errors.h" #include "bus-common-errors.h"
#include "bus-error.h" #include "bus-error.h"
#include "bus-util.h"
#include "bus-kernel.h" #include "bus-kernel.h"
#include "time-util.h" #include "bus-util.h"
#include "process-util.h"
#include "terminal-util.h"
#include "signal-util.h"
#include "dbus.h"
#include "dbus-unit.h"
#include "dbus-job.h" #include "dbus-job.h"
#include "dbus-manager.h" #include "dbus-manager.h"
#include "manager.h" #include "dbus-unit.h"
#include "dbus.h"
#include "env-util.h"
#include "exit-status.h"
#include "hashmap.h"
#include "locale-setup.h"
#include "log.h"
#include "macro.h"
#include "missing.h"
#include "mkdir.h"
#include "path-lookup.h"
#include "path-util.h"
#include "process-util.h"
#include "ratelimit.h"
#include "rm-rf.h"
#include "signal-util.h"
#include "special.h"
#include "strv.h"
#include "terminal-util.h"
#include "time-util.h"
#include "transaction.h" #include "transaction.h"
#include "unit-name.h"
#include "util.h"
#include "virt.h"
#include "watchdog.h"
#include "manager.h"
/* Initial delay and the interval for printing status messages about running jobs */ /* Initial delay and the interval for printing status messages about running jobs */
#define JOBS_IN_PROGRESS_WAIT_USEC (5*USEC_PER_SEC) #define JOBS_IN_PROGRESS_WAIT_USEC (5*USEC_PER_SEC)

View File

@ -27,8 +27,8 @@
#include "sd-bus.h" #include "sd-bus.h"
#include "sd-event.h" #include "sd-event.h"
#include "fdset.h"
#include "cgroup-util.h" #include "cgroup-util.h"
#include "fdset.h"
#include "hashmap.h" #include "hashmap.h"
#include "list.h" #include "list.h"
#include "ratelimit.h" #include "ratelimit.h"
@ -69,11 +69,11 @@ typedef enum StatusType {
STATUS_TYPE_EMERGENCY, STATUS_TYPE_EMERGENCY,
} StatusType; } StatusType;
#include "execute.h"
#include "job.h" #include "job.h"
#include "path-lookup.h" #include "path-lookup.h"
#include "execute.h"
#include "unit-name.h"
#include "show-status.h" #include "show-status.h"
#include "unit-name.h"
struct Manager { struct Manager {
/* Note that the set of units we know of is allowed to be /* Note that the set of units we know of is allowed to be