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.
2 parents b1270be + 31ddb29 commit 2fd2b60Copy full SHA for 2fd2b60
libc-test/semver/apple.txt
@@ -1035,11 +1035,13 @@ OXTABS
1035
O_ASYNC
1036
O_DSYNC
1037
O_EVTONLY
1038
+O_EXEC
1039
O_EXLOCK
1040
O_FSYNC
1041
O_NDELAY
1042
O_NOCTTY
1043
O_NOFOLLOW_ANY
1044
+O_SEARCH
1045
O_SHLOCK
1046
O_SYMLINK
1047
O_SYNC
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