diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-04 20:15:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-04 20:15:07 -0400 |
commit | 5941de8eadc287f3f47b87ce9888734ee07d210b (patch) | |
tree | 2f5a8e84c33ae2df61e4e807798a153d6b7f6fbb /arch/s390/include/asm/sigcontext.h | |
parent | c44df7413fd711bca818111b94cbd7ce5f3600a9 (diff) | |
parent | c6557e7f2b6ae76a44653d38f835174074c42e05 (diff) |
Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6:
[S390] move include/asm-s390 to arch/s390/include/asm
Diffstat (limited to 'arch/s390/include/asm/sigcontext.h')
-rw-r--r-- | arch/s390/include/asm/sigcontext.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/arch/s390/include/asm/sigcontext.h b/arch/s390/include/asm/sigcontext.h new file mode 100644 index 000000000000..aeb6e0b13329 --- /dev/null +++ b/arch/s390/include/asm/sigcontext.h | |||
@@ -0,0 +1,71 @@ | |||
1 | /* | ||
2 | * include/asm-s390/sigcontext.h | ||
3 | * | ||
4 | * S390 version | ||
5 | * Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation | ||
6 | */ | ||
7 | |||
8 | #ifndef _ASM_S390_SIGCONTEXT_H | ||
9 | #define _ASM_S390_SIGCONTEXT_H | ||
10 | |||
11 | #include <linux/compiler.h> | ||
12 | |||
13 | #define __NUM_GPRS 16 | ||
14 | #define __NUM_FPRS 16 | ||
15 | #define __NUM_ACRS 16 | ||
16 | |||
17 | #ifndef __s390x__ | ||
18 | |||
19 | /* Has to be at least _NSIG_WORDS from asm/signal.h */ | ||
20 | #define _SIGCONTEXT_NSIG 64 | ||
21 | #define _SIGCONTEXT_NSIG_BPW 32 | ||
22 | /* Size of stack frame allocated when calling signal handler. */ | ||
23 | #define __SIGNAL_FRAMESIZE 96 | ||
24 | |||
25 | #else /* __s390x__ */ | ||
26 | |||
27 | /* Has to be at least _NSIG_WORDS from asm/signal.h */ | ||
28 | #define _SIGCONTEXT_NSIG 64 | ||
29 | #define _SIGCONTEXT_NSIG_BPW 64 | ||
30 | /* Size of stack frame allocated when calling signal handler. */ | ||
31 | #define __SIGNAL_FRAMESIZE 160 | ||
32 | |||
33 | #endif /* __s390x__ */ | ||
34 | |||
35 | #define _SIGCONTEXT_NSIG_WORDS (_SIGCONTEXT_NSIG / _SIGCONTEXT_NSIG_BPW) | ||
36 | #define _SIGMASK_COPY_SIZE (sizeof(unsigned long)*_SIGCONTEXT_NSIG_WORDS) | ||
37 | |||
38 | typedef struct | ||
39 | { | ||
40 | unsigned long mask; | ||
41 | unsigned long addr; | ||
42 | } __attribute__ ((aligned(8))) _psw_t; | ||
43 | |||
44 | typedef struct | ||
45 | { | ||
46 | _psw_t psw; | ||
47 | unsigned long gprs[__NUM_GPRS]; | ||
48 | unsigned int acrs[__NUM_ACRS]; | ||
49 | } _s390_regs_common; | ||
50 | |||
51 | typedef struct | ||
52 | { | ||
53 | unsigned int fpc; | ||
54 | double fprs[__NUM_FPRS]; | ||
55 | } _s390_fp_regs; | ||
56 | |||
57 | typedef struct | ||
58 | { | ||
59 | _s390_regs_common regs; | ||
60 | _s390_fp_regs fpregs; | ||
61 | } _sigregs; | ||
62 | |||
63 | struct sigcontext | ||
64 | { | ||
65 | unsigned long oldmask[_SIGCONTEXT_NSIG_WORDS]; | ||
66 | _sigregs __user *sregs; | ||
67 | }; | ||
68 | |||
69 | |||
70 | #endif | ||
71 | |||