diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-05-13 03:07:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-13 03:07:16 +0200 |
commit | 6e2ef85b2572af82a0ce035516d65218bdc80fa4 (patch) | |
tree | 3c677c6168301ddd8762186bac7f8bcf1288f46c /socket.h | |
parent | afb757b1a8a416b3c692728330a266b3915eef41 (diff) |
units: rework automatic dependency logic between automounts, mounts, sockets, swaps
Diffstat (limited to 'socket.h')
-rw-r--r-- | socket.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -27,6 +27,7 @@ typedef struct Socket Socket; #include "manager.h" #include "unit.h" #include "socket-util.h" +#include "mount.h" typedef enum SocketState { SOCKET_DEAD, @@ -116,6 +117,10 @@ int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds); /* Called from the service when it shut down */ void socket_notify_service_dead(Socket *s); +/* Called from the mount code figure out if a mount is a dependency of + * any of the sockets of this socket */ +int socket_add_one_mount_link(Socket *s, Mount *m); + extern const UnitVTable socket_vtable; const char* socket_state_to_string(SocketState i); |