Magellan Linux

Annotation of /trunk/mkinitrd-magellan/klibc/usr/include/arch/sparc/klibc/archsignal.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (hide annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File MIME type: text/plain
File size: 448 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 niro 532 /*
2     * arch/sparc/include/klibc/archsignal.h
3     *
4     * Architecture-specific signal definitions
5     *
6     */
7    
8     #ifndef _KLIBC_ARCHSIGNAL_H
9     #define _KLIBC_ARCHSIGNAL_H
10    
11     #define __WANT_POSIX1B_SIGNALS__
12     #include <asm/signal.h>
13    
14     struct sigaction {
15     __sighandler_t sa_handler;
16     unsigned long sa_flags;
17     void (*sa_restorer)(void); /* Not used by Linux/SPARC */
18     sigset_t sa_mask;
19     };
20    
21     /* Not actually used by the kernel... */
22     #define SA_RESTORER 0x80000000
23    
24     #endif