Retcon recent header fixes needed to build gdbserver.

Bug: http://b/21695943
Change-Id: I2b2f0e21a66093bdbbdbc0320ffa574eefaaf5fa
This commit is contained in:
Elliott Hughes
2015-06-17 21:51:13 -07:00
parent 172283617b
commit e3ca8e7434
2 changed files with 58 additions and 0 deletions

View File

@@ -59,6 +59,7 @@ enum {
typedef int greg_t;
typedef greg_t gregset_t[NGREG];
typedef struct user_fpregs fpregset_t;
#include <asm/sigcontext.h>
typedef struct sigcontext mcontext_t;
@@ -82,6 +83,13 @@ typedef struct ucontext {
typedef unsigned long greg_t;
typedef greg_t gregset_t[NGREG];
struct user_fpsimd_struct {
long double vregs[32];
uint32_t fpsr;
uint32_t fpcr;
};
typedef struct user_fpsimd_struct fpregset_t;
#include <asm/sigcontext.h>
typedef struct sigcontext mcontext_t;