root/include/asm-mips/elf.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef __ASM_MIPS_ELF_H
   2 #define __ASM_MIPS_ELF_H
   3 
   4 /*
   5  * ELF register definitions
   6  * This is "make it compile" stuff!
   7  */
   8 #define ELF_NGREG       32
   9 #define ELF_NFPREG      32
  10 
  11 typedef unsigned long elf_greg_t;
  12 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  13 
  14 typedef double elf_fpreg_t;
  15 typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  16 
  17 #endif /* __ASM_MIPS_ELF_H */

/* [previous][next][first][last][top][bottom][index][help] */