summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-09-15 18:07:29 -0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-10-12 19:24:37 +0200
commitd895509725173cd17d375050204a0246f690ddb5 (patch)
treea00ab87738e9ece52e9444ca0afa27a8a886fa59 /include
parentfbedd3ec525936243e0f1634f84c835b22f2f3f0 (diff)
downloaduClibc-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.h6
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
};