Enum minidump_common::errors::linux::ExceptionCodeLinux
source · #[repr(u32)]pub enum ExceptionCodeLinux {
Show 32 variants
SIGHUP,
SIGINT,
SIGQUIT,
SIGILL,
SIGTRAP,
SIGABRT,
SIGBUS,
SIGFPE,
SIGKILL,
SIGUSR1,
SIGSEGV,
SIGUSR2,
SIGPIPE,
SIGALRM,
SIGTERM,
SIGSTKFLT,
SIGCHLD,
SIGCONT,
SIGSTOP,
SIGTSTP,
SIGTTIN,
SIGTTOU,
SIGURG,
SIGXCPU,
SIGXFSZ,
SIGVTALRM,
SIGPROF,
SIGWINCH,
SIGIO,
SIGPWR,
SIGSYS,
DUMP_REQUESTED,
}Expand description
Values for
MINIDUMP_EXCEPTION::exception_code
for crashes on Linux.
These are primarily signal numbers from bits/signum.h.
Variants§
SIGHUP
Hangup (POSIX)
SIGINT
Interrupt (ANSI)
SIGQUIT
Quit (POSIX)
SIGILL
Illegal instruction (ANSI)
SIGTRAP
Trace trap (POSIX)
SIGABRT
Abort (ANSI)
SIGBUS
BUS error (4.2 BSD)
SIGFPE
Floating-point exception (ANSI)
SIGKILL
Kill, unblockable (POSIX)
SIGUSR1
User-defined signal 1 (POSIX)
SIGSEGV
Segmentation violation (ANSI)
SIGUSR2
User-defined signal 2 (POSIX)
SIGPIPE
Broken pipe (POSIX)
SIGALRM
Alarm clock (POSIX)
SIGTERM
Termination (ANSI)
SIGSTKFLT
Stack fault
SIGCHLD
Child status has changed (POSIX)
SIGCONT
Continue (POSIX)
SIGSTOP
Stop, unblockable (POSIX)
SIGTSTP
Keyboard stop (POSIX)
SIGTTIN
Background read from tty (POSIX)
SIGTTOU
Background write to tty (POSIX)
SIGURG
Urgent condition on socket (4.2 BSD)
SIGXCPU
CPU limit exceeded (4.2 BSD)
SIGXFSZ
File size limit exceeded (4.2 BSD)
SIGVTALRM
Virtual alarm clock (4.2 BSD)
SIGPROF
Profiling alarm clock (4.2 BSD)
SIGWINCH
Window size change (4.3 BSD, Sun)
SIGIO
I/O now possible (4.2 BSD)
SIGPWR
Power failure restart (System V)
SIGSYS
Bad system call
DUMP_REQUESTED
No exception, dump requested
Trait Implementations§
source§impl Clone for ExceptionCodeLinux
impl Clone for ExceptionCodeLinux
source§fn clone(&self) -> ExceptionCodeLinux
fn clone(&self) -> ExceptionCodeLinux
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExceptionCodeLinux
impl Debug for ExceptionCodeLinux
source§impl FromPrimitive for ExceptionCodeLinux
impl FromPrimitive for ExceptionCodeLinux
source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moresource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moresource§impl PartialEq<ExceptionCodeLinux> for ExceptionCodeLinux
impl PartialEq<ExceptionCodeLinux> for ExceptionCodeLinux
source§fn eq(&self, other: &ExceptionCodeLinux) -> bool
fn eq(&self, other: &ExceptionCodeLinux) -> bool
self and other values to be equal, and is used
by ==.