UAPI: (Scripted) Disintegrate arch/x86/include/asm
[linux-2.6.git] / arch / x86 / include / asm / signal.h
blob216bf364a7e7098a82962613faba2b6c6f20adca
1 #ifndef _ASM_X86_SIGNAL_H
2 #define _ASM_X86_SIGNAL_H
4 #ifndef __ASSEMBLY__
5 #include <linux/linkage.h>
7 /* Most things should be clean enough to redefine this at will, if care
8 is taken to make libc match. */
10 #define _NSIG 64
12 #ifdef __i386__
13 # define _NSIG_BPW 32
14 #else
15 # define _NSIG_BPW 64
16 #endif
18 #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
20 typedef unsigned long old_sigset_t; /* at least 32 bits */
22 typedef struct {
23 unsigned long sig[_NSIG_WORDS];
24 } sigset_t;
26 #ifndef CONFIG_COMPAT
27 typedef sigset_t compat_sigset_t;
28 #endif
30 #endif /* __ASSEMBLY__ */
31 #include <uapi/asm/signal.h>
32 #ifndef __ASSEMBLY__
33 extern void do_notify_resume(struct pt_regs *, void *, __u32);
34 #ifdef __i386__
35 struct old_sigaction {
36 __sighandler_t sa_handler;
37 old_sigset_t sa_mask;
38 unsigned long sa_flags;
39 __sigrestore_t sa_restorer;
42 struct sigaction {
43 __sighandler_t sa_handler;
44 unsigned long sa_flags;
45 __sigrestore_t sa_restorer;
46 sigset_t sa_mask; /* mask last for extensibility */
49 struct k_sigaction {
50 struct sigaction sa;
53 #else /* __i386__ */
54 #endif /* !__i386__ */
55 #include <asm/sigcontext.h>
57 #ifdef __i386__
59 #define __HAVE_ARCH_SIG_BITOPS
61 #define sigaddset(set,sig) \
62 (__builtin_constant_p(sig) \
63 ? __const_sigaddset((set), (sig)) \
64 : __gen_sigaddset((set), (sig)))
66 static inline void __gen_sigaddset(sigset_t *set, int _sig)
68 asm("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
71 static inline void __const_sigaddset(sigset_t *set, int _sig)
73 unsigned long sig = _sig - 1;
74 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW);
77 #define sigdelset(set, sig) \
78 (__builtin_constant_p(sig) \
79 ? __const_sigdelset((set), (sig)) \
80 : __gen_sigdelset((set), (sig)))
83 static inline void __gen_sigdelset(sigset_t *set, int _sig)
85 asm("btrl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
88 static inline void __const_sigdelset(sigset_t *set, int _sig)
90 unsigned long sig = _sig - 1;
91 set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW));
94 static inline int __const_sigismember(sigset_t *set, int _sig)
96 unsigned long sig = _sig - 1;
97 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
100 static inline int __gen_sigismember(sigset_t *set, int _sig)
102 int ret;
103 asm("btl %2,%1\n\tsbbl %0,%0"
104 : "=r"(ret) : "m"(*set), "Ir"(_sig-1) : "cc");
105 return ret;
108 #define sigismember(set, sig) \
109 (__builtin_constant_p(sig) \
110 ? __const_sigismember((set), (sig)) \
111 : __gen_sigismember((set), (sig)))
113 static inline int sigfindinword(unsigned long word)
115 asm("bsfl %1,%0" : "=r"(word) : "rm"(word) : "cc");
116 return word;
119 struct pt_regs;
121 #else /* __i386__ */
123 #undef __HAVE_ARCH_SIG_BITOPS
125 #endif /* !__i386__ */
127 #endif /* __ASSEMBLY__ */
128 #endif /* _ASM_X86_SIGNAL_H */