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 9899913 commit 4e59d5eCopy full SHA for 4e59d5e
src/unix/solarish/mod.rs
@@ -1294,12 +1294,13 @@ pub const O_EXCL: ::c_int = 1024;
1294
pub const O_NOCTTY: ::c_int = 2048;
1295
pub const O_TRUNC: ::c_int = 512;
1296
pub const O_NOFOLLOW: ::c_int = 0x20000;
1297
-pub const O_DIRECTORY: ::c_int = 0x1000000;
1298
pub const O_SEARCH: ::c_int = 0x200000;
1299
pub const O_EXEC: ::c_int = 0x400000;
1300
pub const O_CLOEXEC: ::c_int = 0x800000;
1301
pub const O_ACCMODE: ::c_int = 0x600003;
1302
pub const O_XATTR: ::c_int = 0x4000;
+pub const O_DIRECTORY: ::c_int = 0x1000000;
1303
+pub const O_DIRECT: ::c_int = 0x2000000;
1304
pub const S_IFIFO: mode_t = 4096;
1305
pub const S_IFCHR: mode_t = 8192;
1306
pub const S_IFBLK: mode_t = 24576;
0 commit comments