mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-24 13:07:05 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
16 lines
395 B
C
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];
|