//! System bindings for the wasm/web platform //! //! This module contains the facade (aka platform-specific) implementations of //! OS level functionality for wasm. //! //! This is all super highly experimental and not actually intended for //! wide/production use yet, it's still all in the experimental category. This //! will likely change over time. //! //! Currently all functions here are basically stubs that immediately return //! errors. The hope is that with a portability lint we can turn actually just //! remove all this and just omit parts of the standard library if we're //! compiling for wasm. That way it's a compile time error for something that's //! guaranteed to be a runtime error! pub mod args; pub mod env; pub mod fd; pub mod fs; #[allow(unused)] #[path = "../wasm/atomics/futex.rs"] pub mod futex; pub mod io; pub mod net; pub mod os; #[path = "../unsupported/pipe.rs"] pub mod pipe; #[path = "../unsupported/process.rs"] pub mod process; pub mod stdio; pub mod thread; pub mod time; #[path = "../unsupported/common.rs"] #[deny(unsafe_op_in_unsafe_fn)] #[allow(unused)] mod common; pub use common::*; mod helpers; // The following exports are listed individually to work around Rust's glob // import conflict rules. If we glob export `helpers` and `common` together, // then the compiler complains about conflicts. use helpers::err2io; pub use helpers::{abort_internal, decode_error_kind, is_interrupted};