Enum cloudabi::signal
[−]
[src]
#[repr(u8)]pub enum signal { ABRT, ALRM, BUS, CHLD, CONT, FPE, HUP, ILL, INT, KILL, PIPE, QUIT, SEGV, STOP, SYS, TERM, TRAP, TSTP, TTIN, TTOU, URG, USR1, USR2, VTALRM, XCPU, XFSZ, // some variants omitted }
Signal condition.
Variants
ABRTProcess abort signal.
Action: Terminates the process.
ALRMAlarm clock.
Action: Terminates the process.
BUSAccess to an undefined portion of a memory object.
Action: Terminates the process.
CHLDChild process terminated, stopped, or continued.
Action: Ignored.
CONTContinue executing, if stopped.
Action: Continues executing, if stopped.
FPEErroneous arithmetic operation.
Action: Terminates the process.
HUPHangup.
Action: Terminates the process.
ILLIllegal instruction.
Action: Terminates the process.
INTTerminate interrupt signal.
Action: Terminates the process.
KILLKill.
Action: Terminates the process.
PIPEWrite on a pipe with no one to read it.
Action: Ignored.
QUITTerminal quit signal.
Action: Terminates the process.
SEGVInvalid memory reference.
Action: Terminates the process.
STOPStop executing.
Action: Stops executing.
SYSBad system call.
Action: Terminates the process.
TERMTermination signal.
Action: Terminates the process.
TRAPTrace/breakpoint trap.
Action: Terminates the process.
TSTPTerminal stop signal.
Action: Stops executing.
TTINBackground process attempting read.
Action: Stops executing.
TTOUBackground process attempting write.
Action: Stops executing.
URGHigh bandwidth data is available at a socket.
Action: Ignored.
USR1User-defined signal 1.
Action: Terminates the process.
USR2User-defined signal 2.
Action: Terminates the process.
VTALRMVirtual timer expired.
Action: Terminates the process.
XCPUCPU time limit exceeded.
Action: Terminates the process.
XFSZFile size limit exceeded.
Action: Terminates the process.
Trait Implementations
impl Copy for signal[src]
impl Clone for signal[src]
fn clone(&self) -> signal[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for signal[src]
impl PartialEq for signal[src]
fn eq(&self, __arg_0: &signal) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Hash for signal[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more