chiark / gitweb /
execute: allow configuration of SCHED_RESET_ON_FORK
[elogind.git] / mount.h
diff --git a/mount.h b/mount.h
index 5b5d5a38c046587fc45b5adcd3302ebbdb451cf0..2f90226051ceff7627fe03676a22617679cbe4ef 100644 (file)
--- a/mount.h
+++ b/mount.h
@@ -22,8 +22,18 @@ struct Mount {
         MountState state;
 
         char *what, *where;
+
+        bool from_etc_fstab:1;
+        bool from_proc_self_mountinfo:1;
+
+        /* Used while looking for mount points that vanished or got
+         * added from/to /proc/self/mountinfo */
+        bool still_exists:1;
+        bool just_created:1;
 };
 
 extern const UnitVTable mount_vtable;
 
+void mount_fd_event(Manager *m, int events);
+
 #endif