chiark / gitweb /
core: make NotifyAccess= and FileDescriptorStoreMax= available to transient services
authorLennart Poettering <lennart@poettering.net>
Wed, 21 Jun 2017 17:17:38 +0000 (19:17 +0200)
committerSven Eden <yamakuzure@gmx.net>
Tue, 25 Jul 2017 07:46:52 +0000 (09:46 +0200)
This is helpful for debugging/testing #5606.

src/basic/unit-name.c
src/basic/unit-name.h

index 21fec7316eb5be5c1c3975fe32b6bc3e2d186ec1..fb30c2527a5e40f3ca5891fcc64fa8aa78c440d0 100644 (file)
@@ -1053,3 +1053,12 @@ static const char* const unit_dependency_table[_UNIT_DEPENDENCY_MAX] = {
 
 DEFINE_STRING_TABLE_LOOKUP(unit_dependency, UnitDependency);
 #endif // 0
+
+static const char* const notify_access_table[_NOTIFY_ACCESS_MAX] = {
+        [NOTIFY_NONE] = "none",
+        [NOTIFY_MAIN] = "main",
+        [NOTIFY_EXEC] = "exec",
+        [NOTIFY_ALL] = "all"
+};
+
+DEFINE_STRING_TABLE_LOOKUP(notify_access, NotifyAccess);
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_;