Merge "Add missing ucontext_t definition to bionic for arch-arm64."
This commit is contained in:
commit
47ff6b9faa
@ -74,9 +74,20 @@ typedef struct ucontext {
|
||||
/* TODO: uc_regspace */
|
||||
} ucontext_t;
|
||||
|
||||
#elif defined(__arm64__)
|
||||
#elif defined(__aarch64__)
|
||||
|
||||
#error TODO
|
||||
/* TODO: gregset_t and fpregset_t. */
|
||||
|
||||
#include <asm/sigcontext.h>
|
||||
typedef struct sigcontext mcontext_t;
|
||||
|
||||
typedef struct ucontext {
|
||||
unsigned long uc_flags;
|
||||
struct ucontext *uc_link;
|
||||
stack_t uc_stack;
|
||||
sigset_t uc_sigmask;
|
||||
mcontext_t uc_mcontext;
|
||||
} ucontext_t;
|
||||
|
||||
#elif defined(__i386__)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user