Find
C
ase-sensitive
R
egexp search
Path
mozilla-central
/
third_party
/
rust
/
rustix
/
src
/
backend
/
libc
/
time
Navigation
Enable keyboard shortcuts
Name
Description
Size
mod.rs
68
syscalls.rs
libc syscalls supporting `rustix::time`.
14103
types.rs
/bitflags/#externally-defined-flags> const _ = !0; } } #[cfg(any(linux_kernel, target_os = "fuchsia"))] bitflags! { /// `TFD_TIMER_*` flags for use with [`timerfd_settime`]. /// /// [`timerfd_settime`]: crate::time::timerfd_settime #[repr(transparent)] #[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)] pub struct TimerfdTimerFlags: u32 { /// `TFD_TIMER_ABSTIME` #[doc(alias = "TFD_TIMER_ABSTIME")] const ABSTIME = bitcast!(c::TFD_TIMER_ABSTIME); /// `TFD_TIMER_CANCEL_ON_SET` #[cfg(linux_kernel)] #[doc(alias = "TFD_TIMER_CANCEL_ON_SET")] const CANCEL_ON_SET = bitcast!(c::TFD_TIMER_CANCEL_ON_SET); /// <https://docs.rs/bitflags/
5912