Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/core/kernel/src/wasm/posix/wait.zig
1068 views
1
// These constants are actually only defined by us in posix-wasm.h, since they
2
// aren't part of WASI at all.
3
4
pub const constants = .{ .c_import = @cImport(@cInclude("posix-wasm.h")), .names = [_][:0]const u8{ "WNOHANG", "WUNTRACED" } };
5
6