libc/new/apple/libpthread/
mod.rs

1//! Source from libpthread <https://github.com/apple-oss-distributions/libpthread/tree/main>
2
3/// Directory: `pthread/`
4///
5/// Note that this module has a trailing underscore to avoid conflicting with its child `pthread`
6/// module.
7///
8/// <https://github.com/apple-oss-distributions/libpthread/tree/main/include/pthread>
9pub(crate) mod pthread_ {
10    pub(crate) mod introspection;
11    pub(crate) mod pthread;
12    pub(crate) mod pthread_impl;
13    pub(crate) mod pthread_spis;
14    pub(crate) mod qos;
15    pub(crate) mod sched;
16    pub(crate) mod spawn;
17    pub(crate) mod stack_np;
18}
19
20pub(crate) mod sys;