blob: f870d1508288b78c64f81f69e9e0aafa9de9b906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Linux/SPARC version. This is the sigaction struction from the Linux
2.1.20 kernel. */
struct sigaction
{
__sighandler_t sa_handler;
sigset_t sa_mask;
unsigned long int sa_flags;
void (*sa_restorer) (void); /* not used by Linux/SPARC yet */
};
#define HAVE_SA_RESTORER
|