diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-09-15 18:07:29 -0400 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-12 19:24:37 +0200 |
commit | d895509725173cd17d375050204a0246f690ddb5 (patch) | |
tree | a00ab87738e9ece52e9444ca0afa27a8a886fa59 /include | |
parent | fbedd3ec525936243e0f1634f84c835b22f2f3f0 (diff) | |
download | uClibc-alpine-d895509725173cd17d375050204a0246f690ddb5.tar.bz2 uClibc-alpine-d895509725173cd17d375050204a0246f690ddb5.tar.xz |
sys/mount.h: sync with latest glibc
Newer glibc adds a few more MNT_* flags, so import them.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/mount.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/sys/mount.h b/include/sys/mount.h index b30554987..57d440f27 100644 --- a/include/sys/mount.h +++ b/include/sys/mount.h @@ -96,8 +96,12 @@ enum /* Possible value for FLAGS parameter of `umount2'. */ enum { - MNT_FORCE = 1 /* Force unmounting. */ + MNT_FORCE = 1, /* Force unmounting. */ #define MNT_FORCE MNT_FORCE + MNT_DETACH = 2, /* Just detach from the tree. */ +#define MNT_DETACH MNT_DETACH + MNT_EXPIRE = 4 /* Mark for expiry. */ +#define MNT_EXPIRE MNT_EXPIRE }; |