sigcontext.h (cf9ce948f47640797bd19980e1d99c6d17d0bdc3) sigcontext.h (4725c86055f5bbdcdfe47199c0715881893a2c79)
1/*
2 * S390 version
3 * Copyright IBM Corp. 1999, 2000
4 */
5
6#ifndef _ASM_S390_SIGCONTEXT_H
7#define _ASM_S390_SIGCONTEXT_H
8

--- 35 unchanged lines hidden (view full) ---

44 _psw_t psw;
45 unsigned long gprs[__NUM_GPRS];
46 unsigned int acrs[__NUM_ACRS];
47} _s390_regs_common;
48
49typedef struct
50{
51 unsigned int fpc;
1/*
2 * S390 version
3 * Copyright IBM Corp. 1999, 2000
4 */
5
6#ifndef _ASM_S390_SIGCONTEXT_H
7#define _ASM_S390_SIGCONTEXT_H
8

--- 35 unchanged lines hidden (view full) ---

44 _psw_t psw;
45 unsigned long gprs[__NUM_GPRS];
46 unsigned int acrs[__NUM_ACRS];
47} _s390_regs_common;
48
49typedef struct
50{
51 unsigned int fpc;
52 unsigned int pad;
52 double fprs[__NUM_FPRS];
53} _s390_fp_regs;
54
55typedef struct
56{
57 _s390_regs_common regs;
58 _s390_fp_regs fpregs;
59} _sigregs;
60
61struct sigcontext
62{
63 unsigned long oldmask[_SIGCONTEXT_NSIG_WORDS];
64 _sigregs __user *sregs;
65};
66
67
68#endif
69
53 double fprs[__NUM_FPRS];
54} _s390_fp_regs;
55
56typedef struct
57{
58 _s390_regs_common regs;
59 _s390_fp_regs fpregs;
60} _sigregs;
61
62struct sigcontext
63{
64 unsigned long oldmask[_SIGCONTEXT_NSIG_WORDS];
65 _sigregs __user *sregs;
66};
67
68
69#endif
70