Package com.abovevacant.epitaph.core
Class TombstoneThread
java.lang.Object
com.abovevacant.epitaph.core.TombstoneThread
A thread from the crashed process.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal List<BacktraceFrame> Backtrace frames (most recent call first).Notes about the backtrace (e.g., warnings about unwinding).final intThread ID.final List<MemoryDump> Memory dumps associated with this thread.final StringThread name, or empty string if unknown.final longPAC enabled keys value.CPU registers at time of crash.final longTagged address control register value.List of ELF files that couldn't be read. -
Constructor Summary
ConstructorsConstructorDescriptionTombstoneThread(int id, String name, List<Register> registers, List<String> backtraceNote, List<String> unreadableElfFiles, List<BacktraceFrame> backtrace, List<MemoryDump> memoryDump, long taggedAddrCtrl, long pacEnabledKeys) -
Method Summary
-
Field Details
-
id
public final int idThread ID. -
name
Thread name, or empty string if unknown. -
registers
CPU registers at time of crash. -
backtraceNote
Notes about the backtrace (e.g., warnings about unwinding). -
unreadableElfFiles
List of ELF files that couldn't be read. -
backtrace
Backtrace frames (most recent call first). -
memoryDump
Memory dumps associated with this thread. -
taggedAddrCtrl
public final long taggedAddrCtrlTagged address control register value. -
pacEnabledKeys
public final long pacEnabledKeysPAC enabled keys value.
-
-
Constructor Details
-
TombstoneThread
-