blob: b3c5ef05011fc7e49fcc1693940bdae671510a6d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_CRIS_SIGNAL_H
2#define _ASM_CRIS_SIGNAL_H
3
David Howellse717aba2012-10-09 09:46:45 +01004#include <uapi/asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/* Most things should be clean enough to redefine this at will, if care
7 is taken to make libc match. */
8
9#define _NSIG 64
10#define _NSIG_BPW 32
11#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
12
13typedef unsigned long old_sigset_t; /* at least 32 bits */
14
15typedef struct {
16 unsigned long sig[_NSIG_WORDS];
17} sigset_t;
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019struct old_sigaction {
20 __sighandler_t sa_handler;
21 old_sigset_t sa_mask;
22 unsigned long sa_flags;
23 void (*sa_restorer)(void);
24};
25
26struct sigaction {
27 __sighandler_t sa_handler;
28 unsigned long sa_flags;
29 void (*sa_restorer)(void);
30 sigset_t sa_mask; /* mask last for extensibility */
31};
32
33struct k_sigaction {
34 struct sigaction sa;
35};
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/sigcontext.h>
37
38/* here we could define asm-optimized sigaddset, sigdelset etc. operations.
39 * if we don't, generic ones are used from linux/signal.h
40 */
41#define ptrace_signal_deliver(regs, cookie) do { } while (0)
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#endif