Skip to main content

libc/new/glibc/sysdeps/nptl/
mod.rs

1//! Source directory: `sysdeps/nptl/`o
2//!
3//! Native POSIX threading library.
4//!
5//! <https://github.com/bminor/glibc/tree/master/sysdeps/nptl>
6
7pub(crate) mod bits {
8    #[cfg_attr(
9        any(
10            target_arch = "mips",
11            target_arch = "mips32r6",
12            target_arch = "mips",
13            target_arch = "mips32r6",
14        ),
15        path = "../../mips/nptl/bits/struct_mutex.rs"
16    )]
17    #[cfg_attr(
18        any(target_arch = "powerpc", target_arch = "powerpc64"),
19        path = "../../powerpc/nptl/bits/struct_mutex.rs"
20    )]
21    #[cfg_attr(target_arch = "s390x", path = "../../s390/nptl/bits/struct_mutex.rs")]
22    #[cfg_attr(
23        any(target_arch = "x86", target_arch = "x86_64"),
24        path = "../../x86/nptl/bits/struct_mutex.rs"
25    )]
26    pub(crate) mod struct_mutex;
27}
28
29pub(crate) mod pthread;