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 e55067c commit ac757afCopy full SHA for ac757af
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
@@ -627,6 +627,7 @@ pub const MS_SYNCHRONOUS: c_ulong = 0x10;
627
pub const MS_REMOUNT: c_ulong = 0x20;
628
pub const MS_MANDLOCK: c_ulong = 0x40;
629
pub const MS_DIRSYNC: c_ulong = 0x80;
630
+pub const MS_NOSYMFOLLOW: c_ulong = 0x100;
631
pub const MS_NOATIME: c_ulong = 0x0400;
632
pub const MS_NODIRATIME: c_ulong = 0x0800;
633
pub const MS_BIND: c_ulong = 0x1000;
0 commit comments