Adding upstream version 1.65.7.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
5189956325
commit
32b8eb3fd7
4153 changed files with 2487292 additions and 0 deletions
24
include/linux/loong64/bits/user.h
Normal file
24
include/linux/loong64/bits/user.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#define ELF_NGREG 45
|
||||
#define ELF_NFPREG 34
|
||||
|
||||
struct user_regs_struct {
|
||||
unsigned long regs[32];
|
||||
unsigned long orig_a0;
|
||||
unsigned long csr_era;
|
||||
unsigned long csr_badv;
|
||||
unsigned long reserved[10];
|
||||
};
|
||||
|
||||
struct user_fp_struct {
|
||||
unsigned long fpr[32];
|
||||
unsigned long fcc;
|
||||
unsigned int fcsr;
|
||||
};
|
||||
|
||||
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
|
||||
|
||||
typedef union {
|
||||
double d;
|
||||
float f;
|
||||
} elf_fpreg_t;
|
||||
typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
|
Loading…
Add table
Add a link
Reference in a new issue