mirror of git://sourceware.org/git/glibc.git
[BZ #10092]
2009-04-23 Aurelien Jarno <aurelien@aurel32.net> [BZ #10092] * sysdeps/unix/sysv/linux/sys/mount.h: Define MNT_DETACH and MNT_EXPIRE.
This commit is contained in:
parent
7f8a28efb5
commit
95bf537fc7
|
|
@ -1,3 +1,9 @@
|
||||||
|
2009-04-23 Aurelien Jarno <aurelien@aurel32.net>
|
||||||
|
|
||||||
|
[BZ #10092]
|
||||||
|
* sysdeps/unix/sysv/linux/sys/mount.h: Define MNT_DETACH and
|
||||||
|
MNT_EXPIRE.
|
||||||
|
|
||||||
2009-04-23 Ulrich Drepper <drepper@redhat.com>
|
2009-04-23 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/preadv.c: The kernel API changed. Adjust.
|
* sysdeps/unix/sysv/linux/preadv.c: The kernel API changed. Adjust.
|
||||||
|
|
|
||||||
|
|
@ -96,8 +96,12 @@ enum
|
||||||
/* Possible value for FLAGS parameter of `umount2'. */
|
/* Possible value for FLAGS parameter of `umount2'. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
MNT_FORCE = 1 /* Force unmounting. */
|
MNT_FORCE = 1, /* Force unmounting. */
|
||||||
#define MNT_FORCE MNT_FORCE
|
#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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue