Since the rt_sigaction syscall on alpha doesn't have a sa_restorer,
do not include it in the kernel struct.
* signal.c (struct new_sigaction): Disable sa_restorer on alpha.
#else
void (*__sa_handler)(int);
unsigned long sa_flags;
+# ifndef ALPHA
void (*sa_restorer)(void);
+# endif /* !ALPHA */
#endif /* !MIPS */
/* Kernel treats sa_mask as an array of longs. */
unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1];