libc/new/apple/libpthread/sys/mod.rs
1//! Directory: `sys/`
2//!
3//! <https://github.com/apple-oss-distributions/libpthread/tree/main/include/sys/_pthread>
4
5/// Directory: `sys/_pthread/`
6///
7/// <https://github.com/apple-oss-distributions/libpthread/tree/main/include/sys>
8pub(crate) mod _pthread {
9 // We don't have the `_pthread_attr_t` and similar modules to match `_pthread_attr_t.h`,
10 // everything is defined in `_pthread_types`.
11 pub(crate) mod _pthread_types;
12}
13
14pub(crate) mod qos;