diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-29 06:04:08 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-29 06:04:08 +0100 |
commit | ef734fd6c2ec4e5602bbfe2a0d26dcf39c14d2bf (patch) | |
tree | 4fb6422913f35cd3fb925aaaae0b56c78c30e075 /mount.h | |
parent | 38a4d4f089df02ff79b5f560f2b11631e0a6a4f9 (diff) |
watch mount status file
Diffstat (limited to 'mount.h')
-rw-r--r-- | mount.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -25,8 +25,15 @@ struct Mount { 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 |