wasi-libc/libc-top-half/musl/arch/mipsn32/bits/user.h
Dan Gohman 320054e84f WASI libc prototype implementation.
This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen,
and dlmalloc, as well as a significant amount of new code.
2019-03-27 07:59:55 -07:00

16 lines
395 B
C

struct user {
unsigned long regs[102];
unsigned long u_tsize, u_dsize, u_ssize;
unsigned long long start_code, start_data, start_stack;
long long signal;
unsigned long long *u_ar0;
unsigned long long magic;
char u_comm[32];
};
#define ELF_NGREG 45
#define ELF_NFPREG 33
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
typedef double elf_fpreg_t, elf_fpregset_t[ELF_NFPREG];