~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/m68k/include/asm/sigcontext.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _ASM_M68k_SIGCONTEXT_H
 
2
#define _ASM_M68k_SIGCONTEXT_H
 
3
 
 
4
struct 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;
 
11
#ifdef __uClinux__
 
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__
 
18
# ifdef __mcoldfire__
 
19
        unsigned long  sc_fpregs[2][2]; /* room for two fp registers */
 
20
# else
 
21
        unsigned long  sc_fpregs[2*3];  /* room for two fp registers */
 
22
# endif
 
23
        unsigned long  sc_fpcntl[3];
 
24
        unsigned char  sc_fpstate[216];
 
25
#endif
 
26
};
 
27
 
 
28
#endif