libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::SigInfo::IllData Struct Reference

Additional data delivered with SIGILL signals. More...

#include <SigInfo.hxx>

+ Inheritance diagram for cosmos::SigInfo::IllData:

Public Types

enum class  Reason : int {
  OPCODE = ILL_ILLOPC , OPERAND = ILL_ILLOPN , ADDRESS = ILL_ILLADR , TRAP = ILL_ILLTRP ,
  PRIV_OP = ILL_PRVOPC , PRIV_REG = ILL_PRVREG , COPROC = ILL_COPROC , BAD_STACK = ILL_BADSTK ,
  BAD_IADDR = ILL_BADIADDR
}
 Different reasons for delivering a SIGILL signal. More...
 

Public Attributes

Reason reason
 The reason why SIGILL was delivered.
 
- Public Attributes inherited from cosmos::SigInfo::FaultData
void * addr
 The address of the fault / trap.
 

Detailed Description

Additional data delivered with SIGILL signals.

Definition at line 216 of file SigInfo.hxx.

Member Enumeration Documentation

◆ Reason

enum class cosmos::SigInfo::IllData::Reason : int
strong

Different reasons for delivering a SIGILL signal.

Enumerator
OPCODE 

illegal opcode.

OPERAND 

illegal operand.

ADDRESS 

illegal addressing mode.

TRAP 

illegal trap.

PRIV_OP 

privileged opcode.

PRIV_REG 

privileged register.

COPROC 

coprocessor error.

BAD_STACK 

internal stack error.

BAD_IADDR 

unimplemented instruction address.

Definition at line 220 of file SigInfo.hxx.

220 : int {
221 OPCODE = ILL_ILLOPC,
222 OPERAND = ILL_ILLOPN,
223 ADDRESS = ILL_ILLADR,
224 TRAP = ILL_ILLTRP,
225 PRIV_OP = ILL_PRVOPC,
226 PRIV_REG = ILL_PRVREG,
227 COPROC = ILL_COPROC,
228 BAD_STACK = ILL_BADSTK,
229 BAD_IADDR = ILL_BADIADDR,
230 };
@ BAD_IADDR
unimplemented instruction address.
@ ADDRESS
illegal addressing mode.
@ PRIV_REG
privileged register.
@ BAD_STACK
internal stack error.

Member Data Documentation

◆ reason

Reason cosmos::SigInfo::IllData::reason

The reason why SIGILL was delivered.

Definition at line 235 of file SigInfo.hxx.


The documentation for this struct was generated from the following file: