chiark / gitweb /
snapshot: implement snapshot unit logic
[elogind.git] / unit.h
diff --git a/unit.h b/unit.h
index c8ebf492ae99d18b4396b2f119ffead75c303173..4dc53a1a687ca6ab1425035b9515753a01967d0e 100644 (file)
--- a/unit.h
+++ b/unit.h
@@ -59,8 +59,8 @@ enum UnitType {
         UNIT_DEVICE,
         UNIT_MOUNT,
         UNIT_AUTOMOUNT,
-        UNIT_TIMER,
         UNIT_SNAPSHOT,
+        UNIT_TIMER,
         _UNIT_TYPE_MAX,
         _UNIT_TYPE_INVALID = -1
 };
@@ -209,6 +209,9 @@ struct UnitVTable {
         /* Instances make no sense for this type */
         bool no_instances:1;
 
+        /* Execlude this type from snapshots */
+        bool no_snapshots:1;
+
         /* This should reset all type-specific variables. This should
          * not allocate memory, and is either called with 0
          * initialized data, or with data left from done() */