1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-26 13:12:03 +00:00
Files
arch
arm
bits
alltypes.h.in
endian.h
errno.h
fcntl.h
fenv.h
float.h
io.h
ioctl.h
ipc.h
limits.h
mman.h
msg.h
posix.h
reg.h
setjmp.h
shm.h
signal.h
socket.h
stat.h
statfs.h
stdarg.h
stdint.h
syscall.h
termios.h
user.h
src
atomic.h
crt_arch.h
pthread_arch.h
reloc.h
syscall_arch.h
i386
microblaze
mips
powerpc
x86_64
crt
dist
include
lib
src
tools
.gitignore
COPYRIGHT
INSTALL
Makefile
README
VERSION
WHATSNEW
configure
musl/arch/arm/bits/user.h

37 lines
757 B
C
Raw Normal View History

typedef struct user_fpregs {
struct fp_reg {
unsigned sign1:1;
unsigned unused:15;
unsigned sign2:1;
unsigned exponent:14;
unsigned j:1;
unsigned mantissa1:31;
unsigned mantissa0:32;
} fpregs[8];
unsigned fpsr:32;
unsigned fpcr:32;
unsigned char ftype[8];
unsigned int init_flag;
} elf_fpregset_t;
struct user_regs {
unsigned long uregs[18];
};
#define ELF_NGREG 18
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
struct user {
struct user_regs regs;
int u_fpvalid;
unsigned long u_tsize, u_dsize, u_ssize;
unsigned long start_code, start_stack;
long signal;
int reserved;
struct user_regs *u_ar0;
unsigned long magic;
char u_comm[32];
int u_debugreg[8];
struct user_fpregs u_fp;
struct user_fpregs *u_fp0;
};