summaryrefslogtreecommitdiff
path: root/automount.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-16 23:24:39 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-16 23:24:39 +0200
commit8d567588cad053f79abe603ab113e1b85a92f1da (patch)
treed29f8cbd6233fac569b84774d7a72a5fd8049b29 /automount.h
parent2076ca540e4ffdd320e086c8b570a5bf19546022 (diff)
automount: implement automount unit type
Diffstat (limited to 'automount.h')
-rw-r--r--automount.h12
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