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

Process abort signal.

Action: Terminates the process.

Alarm clock.

Action: Terminates the process.

Access to an undefined portion of a memory object.

Action: Terminates the process.

Child process terminated, stopped, or continued.

Action: Ignored.

Continue executing, if stopped.

Action: Continues executing, if stopped.

Erroneous arithmetic operation.

Action: Terminates the process.

Hangup.

Action: Terminates the process.

Illegal instruction.

Action: Terminates the process.

Terminate interrupt signal.

Action: Terminates the process.

Kill.

Action: Terminates the process.

Write on a pipe with no one to read it.

Action: Ignored.

Terminal quit signal.

Action: Terminates the process.

Invalid memory reference.

Action: Terminates the process.

Stop executing.

Action: Stops executing.

Bad system call.

Action: Terminates the process.

Termination signal.

Action: Terminates the process.

Trace/breakpoint trap.

Action: Terminates the process.

Terminal stop signal.

Action: Stops executing.

Background process attempting read.

Action: Stops executing.

Background process attempting write.

Action: Stops executing.

High bandwidth data is available at a socket.

Action: Ignored.

User-defined signal 1.

Action: Terminates the process.

User-defined signal 2.

Action: Terminates the process.

Virtual timer expired.

Action: Terminates the process.

CPU time limit exceeded.

Action: Terminates the process.

File size limit exceeded.

Action: Terminates the process.

Trait Implementations

impl Copy for signal
[src]

impl Clone for signal
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for signal
[src]

impl PartialEq for signal
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Hash for signal
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for signal
[src]

[src]

Formats the value using the given formatter.