m68k: Define sigcontext ABI of ColdFire
[deliverable/linux.git] / arch / m68k / include / asm / sigcontext.h
CommitLineData
a05ef467
GU
1#ifndef _ASM_M68k_SIGCONTEXT_H
2#define _ASM_M68k_SIGCONTEXT_H
3
4struct sigcontext {
5 unsigned long sc_mask; /* old sigmask */
6 unsigned long sc_usp; /* old user stack pointer */
7 unsigned long sc_d0;
8 unsigned long sc_d1;
9 unsigned long sc_a0;
10 unsigned long sc_a1;
49148020 11#ifdef __uClinux__
a05ef467
GU
12 unsigned long sc_a5;
13#endif
14 unsigned short sc_sr;
15 unsigned long sc_pc;
16 unsigned short sc_formatvec;
17#ifndef __uClinux__
00ebfe58
MK
18# ifdef __mcoldfire__
19 unsigned long sc_fpregs[2][2]; /* room for two fp registers */
20 unsigned long sc_fpcntl[3];
21 unsigned char sc_fpstate[16+6*8];
22# else
a05ef467
GU
23 unsigned long sc_fpregs[2*3]; /* room for two fp registers */
24 unsigned long sc_fpcntl[3];
25 unsigned char sc_fpstate[216];
00ebfe58 26# endif
a05ef467
GU
27#endif
28};
29
49148020 30#endif
This page took 0.097398 seconds and 5 git commands to generate.