1#![deny(missing_docs)]
100#![allow(stable_features)]
101#![cfg_attr(linux_raw, deny(unsafe_code))]
102#![cfg_attr(rustc_attrs, feature(rustc_attrs))]
103#![cfg_attr(docsrs, feature(doc_cfg))]
104#![cfg_attr(all(wasi_ext, target_os = "wasi", feature = "std"), feature(wasi_ext))]
105#![cfg_attr(core_ffi_c, feature(core_ffi_c))]
106#![cfg_attr(core_c_str, feature(core_c_str))]
107#![cfg_attr(error_in_core, feature(error_in_core))]
108#![cfg_attr(all(feature = "alloc", alloc_c_string), feature(alloc_c_string))]
109#![cfg_attr(all(feature = "alloc", alloc_ffi), feature(alloc_ffi))]
110#![cfg_attr(not(feature = "std"), no_std)]
111#![cfg_attr(feature = "rustc-dep-of-std", feature(ip))]
112#![cfg_attr(feature = "rustc-dep-of-std", allow(internal_features))]
113#![cfg_attr(
114 any(feature = "rustc-dep-of-std", core_intrinsics),
115 feature(core_intrinsics)
116)]
117#![cfg_attr(asm_experimental_arch, feature(asm_experimental_arch))]
118#![cfg_attr(not(feature = "all-apis"), allow(dead_code))]
119#![allow(clippy::unnecessary_cast)]
121#![allow(clippy::useless_conversion)]
123#![allow(clippy::needless_lifetimes)]
125#![cfg_attr(
129 any(target_os = "redox", target_os = "wasi", not(feature = "all-apis")),
130 allow(unused_imports)
131)]
132#![cfg_attr(
135 all(
136 target_os = "wasi",
137 target_env = "p2",
138 any(feature = "fs", feature = "mount", feature = "net"),
139 wasip2,
140 ),
141 feature(wasip2)
142)]
143
144#[cfg(all(feature = "alloc", feature = "rustc-dep-of-std"))]
145extern crate rustc_std_workspace_alloc as alloc;
146
147#[cfg(all(feature = "alloc", not(feature = "rustc-dep-of-std")))]
148extern crate alloc;
149
150#[cfg(all(test, static_assertions))]
152#[macro_use]
153#[allow(unused_imports)]
154extern crate static_assertions;
155#[cfg(all(test, not(static_assertions)))]
156#[macro_use]
157#[allow(unused_imports)]
158mod static_assertions;
159
160pub mod buffer;
161#[cfg(not(windows))]
162#[macro_use]
163pub(crate) mod cstr;
164#[macro_use]
165pub(crate) mod utils;
166#[cfg_attr(feature = "std", path = "maybe_polyfill/std/mod.rs")]
168#[cfg_attr(not(feature = "std"), path = "maybe_polyfill/no_std/mod.rs")]
169pub(crate) mod maybe_polyfill;
170#[cfg(test)]
171#[macro_use]
172pub(crate) mod check_types;
173#[macro_use]
174pub(crate) mod bitcast;
175
176#[cfg(any(
182 all(linux_raw, feature = "use-libc-auxv"),
183 all(libc, not(any(windows, target_os = "espidf", target_os = "wasi")))
184))]
185#[macro_use]
186mod weak;
187
188#[cfg_attr(libc, path = "backend/libc/mod.rs")]
190#[cfg_attr(linux_raw, path = "backend/linux_raw/mod.rs")]
191#[cfg_attr(wasi, path = "backend/wasi/mod.rs")]
192mod backend;
193
194pub mod fd {
208 pub use super::backend::fd::*;
209}
210
211#[cfg(feature = "event")]
213#[cfg_attr(docsrs, doc(cfg(feature = "event")))]
214pub mod event;
215pub mod ffi;
216#[cfg(not(windows))]
217#[cfg(feature = "fs")]
218#[cfg_attr(docsrs, doc(cfg(feature = "fs")))]
219pub mod fs;
220pub mod io;
221#[cfg(linux_kernel)]
222#[cfg(feature = "io_uring")]
223#[cfg_attr(docsrs, doc(cfg(feature = "io_uring")))]
224pub mod io_uring;
225pub mod ioctl;
226#[cfg(not(any(
227 windows,
228 target_os = "espidf",
229 target_os = "horizon",
230 target_os = "vita",
231 target_os = "wasi"
232)))]
233#[cfg(feature = "mm")]
234#[cfg_attr(docsrs, doc(cfg(feature = "mm")))]
235pub mod mm;
236#[cfg(linux_kernel)]
237#[cfg(feature = "mount")]
238#[cfg_attr(docsrs, doc(cfg(feature = "mount")))]
239pub mod mount;
240#[cfg(not(target_os = "wasi"))]
241#[cfg(feature = "net")]
242#[cfg_attr(docsrs, doc(cfg(feature = "net")))]
243pub mod net;
244#[cfg(not(any(windows, target_os = "espidf")))]
245#[cfg(feature = "param")]
246#[cfg_attr(docsrs, doc(cfg(feature = "param")))]
247pub mod param;
248#[cfg(not(windows))]
249#[cfg(any(feature = "fs", feature = "mount", feature = "net"))]
250#[cfg_attr(
251 docsrs,
252 doc(cfg(any(feature = "fs", feature = "mount", feature = "net")))
253)]
254pub mod path;
255#[cfg(feature = "pipe")]
256#[cfg_attr(docsrs, doc(cfg(feature = "pipe")))]
257#[cfg(not(any(windows, target_os = "wasi")))]
258pub mod pipe;
259#[cfg(not(windows))]
260#[cfg(feature = "process")]
261#[cfg_attr(docsrs, doc(cfg(feature = "process")))]
262pub mod process;
263#[cfg(not(windows))]
264#[cfg(not(target_os = "wasi"))]
265#[cfg(feature = "pty")]
266#[cfg_attr(docsrs, doc(cfg(feature = "pty")))]
267pub mod pty;
268#[cfg(not(windows))]
269#[cfg(feature = "rand")]
270#[cfg_attr(docsrs, doc(cfg(feature = "rand")))]
271pub mod rand;
272#[cfg(not(any(
273 windows,
274 target_os = "android",
275 target_os = "espidf",
276 target_os = "horizon",
277 target_os = "vita",
278 target_os = "wasi"
279)))]
280#[cfg(feature = "shm")]
281#[cfg_attr(docsrs, doc(cfg(feature = "shm")))]
282pub mod shm;
283#[cfg(not(windows))]
284#[cfg(feature = "stdio")]
285#[cfg_attr(docsrs, doc(cfg(feature = "stdio")))]
286pub mod stdio;
287#[cfg(feature = "system")]
288#[cfg(not(any(windows, target_os = "wasi")))]
289#[cfg_attr(docsrs, doc(cfg(feature = "system")))]
290pub mod system;
291#[cfg(not(any(windows, target_os = "horizon", target_os = "vita")))]
292#[cfg(feature = "termios")]
293#[cfg_attr(docsrs, doc(cfg(feature = "termios")))]
294pub mod termios;
295#[cfg(not(windows))]
296#[cfg(feature = "thread")]
297#[cfg_attr(docsrs, doc(cfg(feature = "thread")))]
298pub mod thread;
299#[cfg(not(any(windows, target_os = "espidf")))]
300#[cfg(feature = "time")]
301#[cfg_attr(docsrs, doc(cfg(feature = "time")))]
302pub mod time;
303
304#[cfg(not(windows))]
306#[cfg(feature = "runtime")]
307#[cfg(linux_raw)]
308#[cfg_attr(not(document_experimental_runtime_api), doc(hidden))]
309#[cfg_attr(docsrs, doc(cfg(feature = "runtime")))]
310pub mod runtime;
311
312#[cfg(not(windows))]
315#[cfg(not(feature = "fs"))]
316#[cfg(all(
317 linux_raw,
318 not(feature = "use-libc-auxv"),
319 not(feature = "use-explicitly-provided-auxv"),
320 any(
321 feature = "param",
322 feature = "runtime",
323 feature = "thread",
324 feature = "time",
325 target_arch = "x86",
326 )
327))]
328#[cfg_attr(docsrs, doc(cfg(feature = "fs")))]
329pub(crate) mod fs;
330
331#[cfg(not(windows))]
333#[cfg(not(any(feature = "fs", feature = "mount", feature = "net")))]
334#[cfg(all(
335 linux_raw,
336 not(feature = "use-libc-auxv"),
337 not(feature = "use-explicitly-provided-auxv"),
338 any(
339 feature = "param",
340 feature = "runtime",
341 feature = "thread",
342 feature = "time",
343 target_arch = "x86",
344 )
345))]
346pub(crate) mod path;
347
348#[cfg(not(any(windows, target_os = "espidf")))]
350#[cfg(any(feature = "thread", feature = "time"))]
351mod clockid;
352#[cfg(linux_kernel)]
353#[cfg(any(feature = "io_uring", feature = "runtime"))]
354mod kernel_sigset;
355#[cfg(not(any(windows, target_os = "wasi")))]
356#[cfg(any(
357 feature = "process",
358 feature = "runtime",
359 feature = "termios",
360 feature = "thread",
361 all(bsd, feature = "event"),
362 all(linux_kernel, feature = "net")
363))]
364mod pid;
365#[cfg(any(feature = "process", feature = "thread"))]
366#[cfg(linux_kernel)]
367mod prctl;
368#[cfg(not(any(windows, target_os = "espidf", target_os = "wasi")))]
369#[cfg(any(
370 feature = "io_uring",
371 feature = "process",
372 feature = "runtime",
373 all(bsd, feature = "event")
374))]
375mod signal;
376#[cfg(any(
377 feature = "fs",
378 feature = "event",
379 feature = "process",
380 feature = "runtime",
381 feature = "thread",
382 feature = "time",
383 all(feature = "event", any(bsd, linux_kernel, windows, target_os = "wasi")),
384 all(
385 linux_raw,
386 not(feature = "use-libc-auxv"),
387 not(feature = "use-explicitly-provided-auxv"),
388 any(
389 feature = "param",
390 feature = "process",
391 feature = "runtime",
392 feature = "time",
393 target_arch = "x86",
394 )
395 )
396))]
397mod timespec;
398#[cfg(not(any(windows, target_os = "wasi")))]
399#[cfg(any(
400 feature = "fs",
401 feature = "process",
402 feature = "thread",
403 all(
404 linux_raw,
405 not(feature = "use-libc-auxv"),
406 not(feature = "use-explicitly-provided-auxv"),
407 any(
408 feature = "param",
409 feature = "runtime",
410 feature = "time",
411 target_arch = "x86",
412 )
413 ),
414 all(linux_kernel, feature = "net")
415))]
416mod ugid;
417
418#[cfg(doc)]
419#[cfg_attr(docsrs, doc(cfg(doc)))]
420pub mod not_implemented;