am b2b0f7e1: Merge "Add uc_regspace to arm\'s ucontext_t"

* commit 'b2b0f7e1ae0a0459b41a7732b84f58d62373e512':
  Add uc_regspace to arm's ucontext_t
This commit is contained in:
Calin Juravle 2014-05-20 10:17:12 +00:00 committed by Android Git Automerger
commit bcd1a312ae

View File

@ -71,7 +71,8 @@ typedef struct ucontext {
stack_t uc_stack;
mcontext_t uc_mcontext;
sigset_t uc_sigmask;
/* TODO: uc_regspace */
char __padding[128 - sizeof(sigset_t)];
unsigned long uc_regspace[128] __attribute__((__aligned__(8)));
} ucontext_t;
#elif defined(__aarch64__)