chiark / gitweb /
[PATCH] oops forgot to add the new klibc/include directory
[elogind.git] / klibc / include / arch / parisc / klibc / archsignal.h
1 /*
2  * arch/parisc/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 _NSIG    64
12 #define _NSIG_SZ (_NSIG / LONG_BIT)
13
14 typedef struct {
15         unsigned long sig[_NSIG_SZ];
16 } sigset_t;
17
18 struct sigaction {
19         __sighandler_t sa_handler;
20         unsigned long sa_flags;
21         sigset_t sa_mask;
22 };
23
24 #endif