Fix aarch64 struct ucontext.

Change-Id: I6f0959723a753e8c788275709e7245c103ff88d1
This commit is contained in:
Elliott Hughes 2014-04-07 12:12:00 -07:00
parent dc5fcf3620
commit 5c7bda5c61

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;