chiark / gitweb /
automount: implement automount unit type
[elogind.git] / automount.h
index daa3686fcba33e6c5fa08e923a3e0090dbd89365..a8c81e17f2b84a7bdd971c348bee39bf69943937 100644 (file)
@@ -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