We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 999e5e1 + 51af18d commit 87d3a32Copy full SHA for 87d3a32
src/wasi.rs
@@ -322,6 +322,11 @@ pub const ENOTCAPABLE: c_int = 76;
322
pub const EOPNOTSUPP: c_int = ENOTSUP;
323
pub const EWOULDBLOCK: c_int = EAGAIN;
324
325
+pub const _SC_PAGESIZE: c_int = 30;
326
+pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE;
327
+pub const _SC_IOV_MAX: c_int = 60;
328
+pub const _SC_SYMLOOP_MAX: c_int = 173;
329
+
330
#[cfg_attr(
331
feature = "rustc-dep-of-std",
332
link(name = "c", kind = "static", cfg(target_feature = "crt-static"))
0 commit comments