am adc01348: Merge "Add greg_t for arm64."

* commit 'adc01348ee51a4ad678b1c277f85cbbed5c2e728':
  Add greg_t for arm64.
This commit is contained in:
Elliott Hughes 2014-09-19 18:24:40 +00:00 committed by Android Git Automerger
commit ff4187e9a3

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;