]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-x86_64/signal.h
cef7a7d51b7e9a1a55f1d433dac4866348f0c6ae
[linux-2.6-omap-h63xx.git] / include / asm-x86_64 / signal.h
1 #ifndef _ASMx8664_SIGNAL_H
2 #define _ASMx8664_SIGNAL_H
3
4 #ifndef __ASSEMBLY__
5 #include <linux/types.h>
6 #include <linux/linkage.h>
7 #include <linux/time.h>
8
9 /* Avoid too many header ordering problems.  */
10 struct siginfo;
11
12 #ifdef __KERNEL__
13 /* Most things should be clean enough to redefine this at will, if care
14    is taken to make libc match.  */
15
16 #define _NSIG           64
17 #define _NSIG_BPW       64
18 #define _NSIG_WORDS     (_NSIG / _NSIG_BPW)
19
20 typedef unsigned long old_sigset_t;             /* at least 32 bits */
21
22 typedef struct {
23         unsigned long sig[_NSIG_WORDS];
24 } sigset_t;
25
26
27 struct pt_regs; 
28 asmlinkage int do_signal(struct pt_regs *regs, sigset_t *oldset);
29
30
31 #else
32 /* Here we must cater to libcs that poke about in kernel headers.  */
33
34 #define NSIG            32
35 typedef unsigned long sigset_t;
36
37 #endif /* __KERNEL__ */
38 #endif
39
40 #define SIGHUP           1
41 #define SIGINT           2
42 #define SIGQUIT          3
43 #define SIGILL           4
44 #define SIGTRAP          5
45 #define SIGABRT          6
46 #define SIGIOT           6
47 #define SIGBUS           7
48 #define SIGFPE           8
49 #define SIGKILL          9
50 #define SIGUSR1         10
51 #define SIGSEGV         11
52 #define SIGUSR2         12
53 #define SIGPIPE         13
54 #define SIGALRM         14
55 #define SIGTERM         15
56 #define SIGSTKFLT       16
57 #define SIGCHLD         17
58 #define SIGCONT         18
59 #define SIGSTOP         19
60 #define SIGTSTP         20
61 #define SIGTTIN         21
62 #define SIGTTOU         22
63 #define SIGURG          23
64 #define SIGXCPU         24
65 #define SIGXFSZ         25
66 #define SIGVTALRM       26
67 #define SIGPROF         27
68 #define SIGWINCH        28
69 #define SIGIO           29
70 #define SIGPOLL         SIGIO
71 /*
72 #define SIGLOST         29
73 */
74 #define SIGPWR          30
75 #define SIGSYS          31
76 #define SIGUNUSED       31
77
78 /* These should not be considered constants from userland.  */
79 #define SIGRTMIN        32
80 #define SIGRTMAX        _NSIG
81
82 /*
83  * SA_FLAGS values:
84  *
85  * SA_ONSTACK indicates that a registered stack_t will be used.
86  * SA_RESTART flag to get restarting signals (which were the default long ago)
87  * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
88  * SA_RESETHAND clears the handler when the signal is delivered.
89  * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
90  * SA_NODEFER prevents the current signal from being masked in the handler.
91  *
92  * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
93  * Unix names RESETHAND and NODEFER respectively.
94  */
95 #define SA_NOCLDSTOP    0x00000001
96 #define SA_NOCLDWAIT    0x00000002
97 #define SA_SIGINFO      0x00000004
98 #define SA_ONSTACK      0x08000000
99 #define SA_RESTART      0x10000000
100 #define SA_NODEFER      0x40000000
101 #define SA_RESETHAND    0x80000000
102
103 #define SA_NOMASK       SA_NODEFER
104 #define SA_ONESHOT      SA_RESETHAND
105
106 #define SA_RESTORER     0x04000000
107
108 /*
109  * sigaltstack controls
110  */
111 #define SS_ONSTACK      1
112 #define SS_DISABLE      2
113
114 #define MINSIGSTKSZ     2048
115 #define SIGSTKSZ        8192
116
117 #include <asm-generic/signal.h>
118
119 #ifndef __ASSEMBLY__
120
121 struct sigaction {
122         __sighandler_t sa_handler;
123         unsigned long sa_flags;
124         __sigrestore_t sa_restorer;
125         sigset_t sa_mask;               /* mask last for extensibility */
126 };
127
128 struct k_sigaction {
129         struct sigaction sa;
130 };
131
132 typedef struct sigaltstack {
133         void __user *ss_sp;
134         int ss_flags;
135         size_t ss_size;
136 } stack_t;
137
138 #ifdef __KERNEL__
139 #include <asm/sigcontext.h>
140
141 #undef __HAVE_ARCH_SIG_BITOPS
142 #if 0
143
144 static inline void sigaddset(sigset_t *set, int _sig)
145 {
146         __asm__("btsq %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
147 }
148
149 static inline void sigdelset(sigset_t *set, int _sig)
150 {
151         __asm__("btrq %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
152 }
153
154 static inline int __const_sigismember(sigset_t *set, int _sig)
155 {
156         unsigned long sig = _sig - 1;
157         return 1 & (set->sig[sig / _NSIG_BPW] >> (sig & ~(_NSIG_BPW-1)));
158 }
159
160 static inline int __gen_sigismember(sigset_t *set, int _sig)
161 {
162         int ret;
163         __asm__("btq %2,%1\n\tsbbq %0,%0"
164                 : "=r"(ret) : "m"(*set), "Ir"(_sig-1) : "cc");
165         return ret;
166 }
167
168 #define sigismember(set,sig)                    \
169         (__builtin_constant_p(sig) ?            \
170          __const_sigismember((set),(sig)) :     \
171          __gen_sigismember((set),(sig)))
172
173 static inline int sigfindinword(unsigned long word)
174 {
175         __asm__("bsfq %1,%0" : "=r"(word) : "rm"(word) : "cc");
176         return word;
177 }
178 #endif
179 #endif
180
181 #define ptrace_signal_deliver(regs, cookie) do { } while (0)
182
183 #endif /* __KERNEL__ */
184
185 #endif