Skip to main content

relibc/header/bits_sigset-t/
mod.rs

1//! `sigset_t` for `signal.h` implementation.
2//!
3//! See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/signal.h.html>.
4
5use crate::platform::types::c_ulonglong;
6
7/// Integer type of an object used to represent sets of signals.
8#[allow(non_camel_case_types)]
9pub type sigset_t = c_ulonglong;