diff options
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/path.h b/src/path.h index e0feeea711..5c06de4dfe 100644 --- a/src/path.h +++ b/src/path.h @@ -45,16 +45,18 @@ typedef enum PathType { } PathType; typedef struct PathSpec { - PathType type; char *path; + Watch watch; + + LIST_FIELDS(struct PathSpec, spec); + + PathType type; int inotify_fd; int primary_wd; - bool previous_exists; - Watch watch; + bool previous_exists; - LIST_FIELDS(struct PathSpec, spec); } PathSpec; struct Path { @@ -62,9 +64,10 @@ struct Path { LIST_HEAD(PathSpec, specs); - PathState state, deserialized_state; Unit *unit; + PathState state, deserialized_state; + bool failure; }; |