Systemd/klibc/klibc/arch/s390x/include/klibc/archsetjmp.h
greg@kroah.com a41a0e28c2 [PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
Not hooked up to the build yet.
2005-04-26 21:05:23 -07:00

16 lines
303 B
C

/*
* arch/s390x/include/klibc/archsetjmp.h
*/
#ifndef _KLIBC_ARCHSETJMP_H
#define _KLIBC_ARCHSETJMP_H
struct __jmp_buf {
uint64_t __gregs[10]; /* general registers r6-r15 */
uint64_t __fpregs[4]; /* fp registers f1, f3, f5, f7 */
};
typedef struct __jmp_buf jmp_buf[1];
#endif /* _SETJMP_H */