chiark / gitweb /
snapshot: implement snapshot unit logic
[elogind.git] / manager.h
index cb4af820d9ce9c35f4c4f8c8668d69c1c983140b..77e55339cd1baf312ae3568d712c4c2183a6dc6b 100644 (file)
--- a/manager.h
+++ b/manager.h
@@ -165,6 +165,8 @@ struct Manager {
         char **sysvinit_path;
         char **sysvrcnd_path;
 
+        usec_t boot_timestamp;
+
         /* Data specific to the device subsystem */
         struct udev* udev;
         struct udev_monitor* udev_monitor;
@@ -186,7 +188,11 @@ struct Manager {
         char *cgroup_controller;
         char *cgroup_hierarchy;
 
-        usec_t boot_timestamp;
+        /* Data specific to the Automount subsystem */
+        int dev_autofs_fd;
+
+        /* Data specific to the Snapshot subsystem */
+        unsigned n_snapshots;
 };
 
 int manager_new(ManagerRunningAs running_as, bool confirm_spawn, Manager **m);