chiark / gitweb /
[PATCH] volume-id build fix and update
[elogind.git] / klibc / klibc / arch / alpha / include / klibc / archsetjmp.h
1 /*
2  * arch/alpha/include/klibc/archsetjmp.h
3  */
4
5 #ifndef _KLIBC_ARCHSETJMP_H
6 #define _KLIBC_ARCHSETJMP_H
7
8 struct __jmp_buf {
9   unsigned long __s0;
10   unsigned long __s1;
11   unsigned long __s2;
12   unsigned long __s3;
13   unsigned long __s4;
14   unsigned long __s5;
15   unsigned long __fp;
16   unsigned long __ra;
17   unsigned long __gp;
18   unsigned long __sp;
19   
20   unsigned long __f2;
21   unsigned long __f3;
22   unsigned long __f4;
23   unsigned long __f5;
24   unsigned long __f6;
25   unsigned long __f7;
26   unsigned long __f8;
27   unsigned long __f9;
28 };
29
30 /* Must be an array so it will decay to a pointer when a function is called */
31 typedef struct __jmp_buf jmp_buf[1];
32
33 #endif /* _KLIBC_ARCHSETJMP_H */