diff options
Diffstat (limited to 'unit.h')
-rw-r--r-- | unit.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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() */ |