summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-09-15 18:07:29 -0400
committerAustin Foxley <austinf@cetoncorp.com>2009-09-18 11:45:18 -0700
commita8e5fb176799e020749f8feda11282bf5ff703c2 (patch)
tree3a9ad8dec6ea4c363ed582085f961632339cf332
parentd1b18e3843158ccb14ee78cf044493e290f86377 (diff)
downloaduClibc-alpine-a8e5fb176799e020749f8feda11282bf5ff703c2.tar.bz2
uClibc-alpine-a8e5fb176799e020749f8feda11282bf5ff703c2.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: Austin Foxley <austinf@cetoncorp.com>
-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
};