mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
361 B
16 lines
361 B
struct user_regs_struct {
|
|
unsigned long long regs[31];
|
|
unsigned long long sp;
|
|
unsigned long long pc;
|
|
unsigned long long pstate;
|
|
};
|
|
|
|
struct user_fpsimd_struct {
|
|
long double vregs[32];
|
|
unsigned int fpsr;
|
|
unsigned int fpcr;
|
|
};
|
|
|
|
#define ELF_NREG 34
|
|
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NREG];
|
|
typedef struct user_fpsimd_struct elf_fpregset_t;
|
|
|