Skip to main content

relibc/header/bits_pthread-t/
mod.rs

1//! `pthread_t` from `sys/types.h` implementation.
2//!
3//! See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_types.h.html>.
4
5use crate::platform::types::c_void;
6
7/// Used to identify a thread.
8pub type pthread_t = *mut c_void;