Merge "Add padding to mips ucontext_t."

This commit is contained in:
Calin Juravle 2014-05-22 10:16:41 +00:00 committed by Gerrit Code Review
commit d1dc009c56

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__)