Merge "Add greg_t for arm64."

This commit is contained in:
Elliott Hughes 2014-09-19 18:01:22 +00:00 committed by Gerrit Code Review
commit adc01348ee

View File

@ -78,6 +78,10 @@ typedef struct ucontext {
#elif defined(__aarch64__)
#define NGREG 34 /* x0..x30 + sp + pc + pstate */
typedef unsigned long greg_t;
typedef greg_t gregset_t[NGREG];
#include <asm/sigcontext.h>
typedef struct sigcontext mcontext_t;