summaryrefslogtreecommitdiff
path: root/automount.h
diff options
context:
space:
mode:
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