diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-16 23:24:39 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-16 23:24:39 +0200 |
commit | 8d567588cad053f79abe603ab113e1b85a92f1da (patch) | |
tree | d29f8cbd6233fac569b84774d7a72a5fd8049b29 /automount.h | |
parent | 2076ca540e4ffdd320e086c8b570a5bf19546022 (diff) |
automount: implement automount unit type
Diffstat (limited to 'automount.h')
-rw-r--r-- | automount.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/automount.h b/automount.h index daa3686fcb..a8c81e17f2 100644 --- a/automount.h +++ b/automount.h @@ -40,9 +40,21 @@ struct Automount { AutomountState state; + char *where; + Mount *mount; + + int pipe_fd; + Watch pipe_watch; + dev_t dev_id; + + Set *tokens; + + bool failure:1; }; extern const UnitVTable automount_vtable; +int automount_send_ready(Automount *a, int status); + #endif |