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 b1270be commit 1ccdcc3Copy full SHA for 1ccdcc3
src/unix/bsd/apple/mod.rs
@@ -3166,6 +3166,8 @@ pub const O_SYMLINK: ::c_int = 0x00200000;
3166
pub const O_DSYNC: ::c_int = 0x00400000;
3167
pub const O_CLOEXEC: ::c_int = 0x01000000;
3168
pub const O_NOFOLLOW_ANY: ::c_int = 0x20000000;
3169
+pub const O_EXEC: ::c_int = 0x40000000;
3170
+pub const O_SEARCH: ::c_int = O_EXEC | O_DIRECTORY;
3171
pub const S_IFIFO: mode_t = 0o1_0000;
3172
pub const S_IFCHR: mode_t = 0o2_0000;
3173
pub const S_IFBLK: mode_t = 0o6_0000;
0 commit comments