chiark / gitweb /
tests: add tests for environment serialization
[elogind.git] / src / basic / unit-name.h
index 5b70f18bed766cc1bc72779bec1399334255055f..bba9a4e807a89e589e8d3eaabbde2266e2df10be 100644 (file)
@@ -259,6 +259,15 @@ typedef enum UnitDependency {
 } UnitDependency;
 #endif // 0
 
+typedef enum NotifyAccess {
+        NOTIFY_NONE,
+        NOTIFY_ALL,
+        NOTIFY_MAIN,
+        NOTIFY_EXEC,
+        _NOTIFY_ACCESS_MAX,
+        _NOTIFY_ACCESS_INVALID = -1
+} NotifyAccess;
+
 typedef enum UnitNameFlags {
         UNIT_NAME_PLAIN = 1,      /* Allow foo.service */
         UNIT_NAME_INSTANCE = 2,   /* Allow foo@bar.service */
@@ -373,3 +382,6 @@ TimerState timer_state_from_string(const char *s) _pure_;
 const char *unit_dependency_to_string(UnitDependency i) _const_;
 UnitDependency unit_dependency_from_string(const char *s) _pure_;
 #endif // 0
+
+const char* notify_access_to_string(NotifyAccess i) _const_;
+NotifyAccess notify_access_from_string(const char *s) _pure_;