1234567891011121314151617181920212223242526272829303132 |
- #ifndef _BITS_SIGCONTEXT_H
- #define _BITS_SIGCONTEXT_H 1
- #if !defined _SIGNAL_H && !defined _SYS_UCONTEXT_H
- # error "Never use <bits/sigcontext.h> directly; include <signal.h> instead."
- #endif
- struct sigcontext {
-
- unsigned long int gregs[32];
- unsigned long long int fpregs[66] __attribute__ ((__aligned__ (16)));
- };
- #endif
|