diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-03-12 08:44:10 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-12 08:44:10 -0800 |
commit | 94db8db8e80d8b7fe094dee92660c158bf62d732 (patch) | |
tree | 3d26eb9b147f34b1c5b5774a1c482bc87d8424f6 /sysdeps | |
parent | 4c35fb65c9ea221561bc5698358944a73383b3d6 (diff) | |
download | glibc-94db8db8e80d8b7fe094dee92660c158bf62d732.tar glibc-94db8db8e80d8b7fe094dee92660c158bf62d732.tar.gz glibc-94db8db8e80d8b7fe094dee92660c158bf62d732.tar.bz2 glibc-94db8db8e80d8b7fe094dee92660c158bf62d732.zip |
Define UMOUNT_NOFOLLOW.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/mount.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h index a41220d14e..923b4616ca 100644 --- a/sysdeps/unix/sysv/linux/sys/mount.h +++ b/sysdeps/unix/sysv/linux/sys/mount.h @@ -123,8 +123,10 @@ enum #define MNT_FORCE MNT_FORCE MNT_DETACH = 2, /* Just detach from the tree. */ #define MNT_DETACH MNT_DETACH - MNT_EXPIRE = 4 /* Mark for expiry. */ + MNT_EXPIRE = 4, /* Mark for expiry. */ #define MNT_EXPIRE MNT_EXPIRE + UMOUNT_NOFOLLOW = 8 /* Don't follow symlink on umount. */ +#define UMOUNT_NOFOLLOW UMOUNT_NOFOLLOW }; |