Enum nix::sys::signal::SigevNotify [−][src]
pub enum SigevNotify { SigevNone, SigevSignal { signal: Signal, si_value: intptr_t, }, SigevThreadId { signal: Signal, thread_id: type_of_thread_id, si_value: intptr_t, }, }
Used to request asynchronous notification of certain events, for example, with POSIX AIO, POSIX message queues, and POSIX timers.
Variants
No notification will be delivered
The signal given by signal
will be delivered to the process. The
value in si_value
will be present in the si_value
field of the
siginfo_t
structure of the queued signal.
The signal signal
is queued to the thread whose LWP ID is given in
thread_id
. The value stored in si_value
will be present in the
si_value
of the siginfo_t
structure of the queued signal.
Show fields
Fields of SigevThreadId
Trait Implementations
impl Clone for SigevNotify
[src]
impl Clone for SigevNotify
[src]fn clone(&self) -> SigevNotify
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Hash for SigevNotify
[src]
impl Hash for SigevNotify
[src]impl PartialEq<SigevNotify> for SigevNotify
[src]
impl PartialEq<SigevNotify> for SigevNotify
[src]