chiark / gitweb /
libs: add symbol versioning for the benefit of RPM
[elogind.git] / src / path.h
index ea2331c2abaee7d4bc2eadda54c6c356c611fbd8..116fc63ff726daa6ac53f3fb581f9c3e79f7eab1 100644 (file)
@@ -38,6 +38,7 @@ typedef enum PathState {
 
 typedef enum PathType {
         PATH_EXISTS,
+        PATH_EXISTS_GLOB,
         PATH_DIRECTORY_NOT_EMPTY,
         PATH_CHANGED,
         _PATH_TYPE_MAX,
@@ -69,6 +70,10 @@ struct Path {
         PathState state, deserialized_state;
 
         bool failure;
+        bool inotify_triggered;
+
+        bool make_directory;
+        mode_t directory_mode;
 };
 
 void path_unit_notify(Unit *u, UnitActiveState new_state);