X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=mount.h;h=2f90226051ceff7627fe03676a22617679cbe4ef;hp=734e96cb273d8ae96ca2bbc56010bee7214d5707;hb=80c5385a8384b2219e5d44c19b2d67eddd540c1f;hpb=87f0e418cf2c58b3201d06a60e3696ec672d2662 diff --git a/mount.h b/mount.h index 734e96cb2..2f9022605 100644 --- a/mount.h +++ b/mount.h @@ -20,9 +20,20 @@ struct Mount { Meta meta; MountState state; - char *path; + + 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