am 77761e4c: am ddf52021: am d1dc009c: Merge "Add padding to mips ucontext_t."

* commit '77761e4cc8719933bf66be7894e1b3da27bd03dd':
  Add padding to mips ucontext_t.
This commit is contained in:
Calin Juravle 2014-05-22 13:33:29 +00:00 committed by Android Git Automerger
commit 63590a2f95

View File

@ -198,6 +198,7 @@ typedef struct ucontext {
stack_t uc_stack;
mcontext_t uc_mcontext;
sigset_t uc_sigmask;
char __padding[128 - sizeof(sigset_t)];
} ucontext_t;
#elif defined(__mips64__)