summaryrefslogtreecommitdiff
path: root/unit.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-22 02:42:59 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-22 02:42:59 +0200
commitc497c7a9e4db487eab4f92421a74d721d9558186 (patch)
tree6699ec66f8f69fd8a8432f88bb5d67eab50b04ea /unit.h
parentc9c0cadbf8d8e4c1b99c35a8150c08558f361ebd (diff)
manager: introduce 'isolate' job mode which kills all units but the requested one
Diffstat (limited to 'unit.h')
-rw-r--r--unit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/unit.h b/unit.h
index 9155b2eda1..21627ef4d4 100644
--- a/unit.h
+++ b/unit.h
@@ -306,6 +306,9 @@ struct UnitVTable {
/* Exclude from automatic gc */
bool no_gc:1;
+
+ /* Exclude from isolation requests */
+ bool no_isolate:1;
};
extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];