29 lines
724 B
C
29 lines
724 B
C
#ifndef LIBUCONTEXT_BITS_H
|
|
#define LIBUCONTEXT_BITS_H
|
|
|
|
typedef int libucontext_greg_t, libucontext_gregset_t[18];
|
|
|
|
typedef struct {
|
|
unsigned long trap_no, error_code, oldmask;
|
|
unsigned long arm_r0, arm_r1, arm_r2, arm_r3;
|
|
unsigned long arm_r4, arm_r5, arm_r6, arm_r7;
|
|
unsigned long arm_r8, arm_r9, arm_r10, arm_fp;
|
|
unsigned long arm_ip, arm_sp, arm_lr, arm_pc;
|
|
unsigned long arm_cpsr, fault_address;
|
|
} libucontext_mcontext_t;
|
|
|
|
typedef struct {
|
|
void *ss_sp;
|
|
int ss_flags;
|
|
size_t ss_size;
|
|
} libucontext_stack_t;
|
|
|
|
typedef struct libucontext_ucontext {
|
|
unsigned long uc_flags;
|
|
struct libucontext_ucontext *uc_link;
|
|
libucontext_stack_t uc_stack;
|
|
libucontext_mcontext_t uc_mcontext;
|
|
} libucontext_ucontext_t;
|
|
|
|
#endif
|