mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 17:11:53 +00:00
aside from microblaze, these should be roughly correct for all archs now. some misc junk macros and typedefs are missing, which should probably be added for max compatibility with trace/debug tools.
15 lines
333 B
C
15 lines
333 B
C
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];
|
|
};
|