struct user_regset_view — available regsets
struct user_regset_view {
const char * name;
const struct user_regset * regsets;
unsigned int n;
u32 e_flags;
u16 e_machine;
u8 ei_osabi;
}; Identifier, e.g. UTS_MACHINE string.
Array of n regsets available in this view.
Number of elements in regsets.
ELF header e_flags value written in core dumps.
ELF header e_machine EM_* value written in core dumps.
ELF header e_ident[EI_OSABI] value written in core dumps.
A regset view is a collection of regsets (struct user_regset, above). This describes all the state of a thread that can be seen from a given architecture/ABI environment. More than one view might refer to the same struct user_regset, or more than one regset might refer to the same machine-specific state in the thread. For example, a 32-bit thread's state could be examined from the 32-bit view or from the 64-bit view. Either method reaches the same thread register state, doing appropriate widening or truncation.