We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048162d commit 0bc957dCopy full SHA for 0bc957d
libc-test/semver/linux.txt
@@ -1732,6 +1732,7 @@ MS_NODEV
1732
MS_NODIRATIME
1733
MS_NOEXEC
1734
MS_NOSUID
1735
+MS_NOSYMFOLLOW
1736
MS_NOUSER
1737
MS_POSIXACL
1738
MS_PRIVATE
src/unix/linux_like/mod.rs
@@ -662,6 +662,7 @@ pub const MS_SYNCHRONOUS: c_ulong = 0x10;
662
pub const MS_REMOUNT: c_ulong = 0x20;
663
pub const MS_MANDLOCK: c_ulong = 0x40;
664
pub const MS_DIRSYNC: c_ulong = 0x80;
665
+pub const MS_NOSYMFOLLOW: c_ulong = 0x100;
666
pub const MS_NOATIME: c_ulong = 0x0400;
667
pub const MS_NODIRATIME: c_ulong = 0x0800;
668
pub const MS_BIND: c_ulong = 0x1000;
0 commit comments