//! GNU libc. //! //! * Headers: <https://sourceware.org/git/?p=glibc.git> (official) //! * Headers: <https://github.com/bminor/glibc> (mirror) //! //! This module structure is modeled after glibc's source tree. Its build system selects headers //! from different locations based on the platform, which we mimic here with reexports.
/// Source directory: `sysdeps/` /// /// <https://github.com/bminor/glibc/tree/master/sysdeps> mod sysdeps { // FIXME(pthread): eventually all platforms should use this module #[cfg(target_os = "linux")] pub(crate) mod nptl; pub(crate) mod unix;
}
pub(crate) use posix::*; // FIXME(pthread): eventually all platforms should use this module #[cfg(target_os = "linux")] pub(crate) use sysdeps::nptl::*; #[cfg(target_os = "linux")] pub(crate) use sysdeps::unix::linux::*;
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.16 Sekunden
(vorverarbeitet am 2026-08-25)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.