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 0ea548a + a32895f commit 86dff58Copy full SHA for 86dff58
src/wasi.rs
@@ -201,6 +201,7 @@ pub const O_EXEC: c_int = 0x02000000;
201
pub const O_RDONLY: c_int = 0x04000000;
202
pub const O_SEARCH: c_int = 0x08000000;
203
pub const O_WRONLY: c_int = 0x10000000;
204
+pub const O_CLOEXEC: c_int = 0x0;
205
pub const O_RDWR: c_int = O_WRONLY | O_RDONLY;
206
pub const O_ACCMODE: c_int = O_EXEC | O_RDWR | O_SEARCH;
207
pub const O_NOCTTY: c_int = 0x0;
0 commit comments