am 47931f8f: Merge "Fix aarch64 struct ucontext."

* commit '47931f8f796b736bd229b6669efcf428108abc47':
  Fix aarch64 struct ucontext.
This commit is contained in:
Elliott Hughes 2014-04-07 20:56:05 +00:00 committed by Android Git Automerger
commit 3333a7af50

View File

@ -86,6 +86,7 @@ typedef struct ucontext {
struct ucontext *uc_link;
stack_t uc_stack;
sigset_t uc_sigmask;
char __unused[128 - sizeof(sigset_t)];
mcontext_t uc_mcontext;
} ucontext_t;