diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-06 23:08:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-06 23:08:54 +0100 |
commit | 57020a3abff20f176e9f0cbb982d7977119d6f08 (patch) | |
tree | 3b3d69307cecce0dc4ad25aa074c2a0db64bdfb6 /src/path.h | |
parent | 73aa0c00df8b101bad4c3a038148a633df88610c (diff) |
unit: properly update references to units which are merged
When we merge units that some kind of object points to, those pointers
might become invalidated, and needs to be updated. Introduce a UnitRef
struct which links up all the unit references, to ensure corrected
references.
At the same time, drop configured_sockets in the Service object, and
replace it by proper UNIT_TRIGGERS resp. UNIT_TRIGGERED_BY dependencies,
which allow us to simplify a lot of code.
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/path.h b/src/path.h index 1d78fe424a..8b3c0bc119 100644 --- a/src/path.h +++ b/src/path.h @@ -58,14 +58,14 @@ typedef struct PathSpec { int primary_wd; bool previous_exists; - } PathSpec; -int pathspec_watch(PathSpec *s, Unit *u); -void pathspec_unwatch(PathSpec *s, Unit *u); -int pathspec_fd_event(PathSpec *s, uint32_t events); -void pathspec_done(PathSpec *s); -static inline bool pathspec_owns_inotify_fd(PathSpec *s, int fd) { +int path_spec_watch(PathSpec *s, Unit *u); +void path_spec_unwatch(PathSpec *s, Unit *u); +int path_spec_fd_event(PathSpec *s, uint32_t events); +void path_spec_done(PathSpec *s); + +static inline bool path_spec_owns_inotify_fd(PathSpec *s, int fd) { return s->inotify_fd == fd; } @@ -74,7 +74,7 @@ struct Path { LIST_HEAD(PathSpec, specs); - Unit *unit; + UnitRef unit; PathState state, deserialized_state; |