mailing list of musl libc
 help / color / mirror / code / Atom feed
fd9b7b22e6b13b929bb8e661f4d8d689c12233a4 blob 459 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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];
debug log:

solving fd9b7b22 ...
found fd9b7b22 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).