mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
333 B
14 lines
333 B
struct pt_regs {
|
|
unsigned long gpr[32], nip, msr, orig_gpr3, ctr, link, xer, ccr, mq;
|
|
unsigned long trap, dar, dsisr, result;
|
|
};
|
|
|
|
struct user {
|
|
struct pt_regs regs;
|
|
unsigned long u_tsize, u_dsize, u_ssize;
|
|
unsigned long start_code, start_data, start_stack;
|
|
long signal;
|
|
void *u_ar0;
|
|
unsigned long magic;
|
|
char u_comm[32];
|
|
};
|
|
|