]>
git.proxmox.com Git - rustc.git/blob - library/std/src/sys/wasm/mod.rs
1 //! System bindings for the wasm/web platform
3 //! This module contains the facade (aka platform-specific) implementations of
4 //! OS level functionality for wasm. Note that this wasm is *not* the emscripten
5 //! wasm, so we have no runtime here.
7 //! This is all super highly experimental and not actually intended for
8 //! wide/production use yet, it's still all in the experimental category. This
9 //! will likely change over time.
11 //! Currently all functions here are basically stubs that immediately return
12 //! errors. The hope is that with a portability lint we can turn actually just
13 //! remove all this and just omit parts of the standard library if we're
14 //! compiling for wasm. That way it's a compile time error for something that's
15 //! guaranteed to be a runtime error!
17 #![deny(unsafe_op_in_unsafe_fn)]
21 #[path = "../unix/cmath.rs"]
24 #[path = "../unsupported/fs.rs"]
26 #[path = "../unsupported/io.rs"]
28 #[path = "../unsupported/net.rs"]
30 #[path = "../unsupported/os.rs"]
32 #[path = "../unix/path.rs"]
34 #[path = "../unsupported/pipe.rs"]
36 #[path = "../unsupported/process.rs"]
38 #[path = "../unsupported/stdio.rs"]
41 #[path = "../unsupported/thread_local_dtor.rs"]
42 pub mod thread_local_dtor
;
43 #[path = "../unsupported/thread_local_key.rs"]
44 pub mod thread_local_key
;
45 #[path = "../unsupported/time.rs"]
48 pub use crate::sys_common
::os_str_bytes
as os_str
;
51 if #[cfg(target_feature = "atomics")] {
52 #[path = "condvar_atomics.rs"]
54 #[path = "mutex_atomics.rs"]
56 #[path = "rwlock_atomics.rs"]
58 #[path = "futex_atomics.rs"]
61 #[path = "../unsupported/condvar.rs"]
63 #[path = "../unsupported/mutex.rs"]
65 #[path = "../unsupported/rwlock.rs"]
70 #[path = "../unsupported/common.rs"]
71 #[deny(unsafe_op_in_unsafe_fn)]