File: jmp_buf.h

package info (click to toggle)
glibc 2.0.7t-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 31,224 kB
  • ctags: 27,033
  • sloc: ansic: 177,513; asm: 17,642; sh: 2,823; makefile: 2,635; awk: 565; perl: 54; csh: 15; sed: 2
file content (19 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Define the machine-dependent type `jmp_buf'.  m68k version.  */

typedef struct
  {
    /* There are eight 4-byte data registers, but D0 is not saved.  */
    long int __dregs[7];

    /* There are six 4-byte address registers, plus the FP and SP.  */
    int *__aregs[6];
    int * __fp;
    int * __sp;

#if defined(__HAVE_68881__) || defined(__HAVE_FPU__)
    /* There are eight floating point registers which
       are saved in IEEE 96-bit extended format.  */
    char __fpregs[8 * (96 / 8)];
#endif

  } __jmp_buf[1];