File: sigcontext.h

package info (click to toggle)
kernel-source-2.0.35 2.0.35-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 32,456 kB
  • ctags: 94,327
  • sloc: ansic: 587,014; asm: 26,388; makefile: 4,055; sh: 1,221; perl: 727; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (21 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __ASM_MIPS_SIGCONTEXT_H
#define __ASM_MIPS_SIGCONTEXT_H

/*
 * This struct isn't in the ABI, so we continue to use the old
 * pre 1.3 definition.  Needs to be changed for 64 bit kernels,
 * but it's 4am ...
 */
struct sigcontext_struct {
	unsigned long	       sc_at, sc_v0, sc_v1, sc_a0, sc_a1, sc_a2, sc_a3;
	unsigned long	sc_t0, sc_t1, sc_t2, sc_t3, sc_t4, sc_t5, sc_t6, sc_t7;
	unsigned long	sc_s0, sc_s1, sc_s2, sc_s3, sc_s4, sc_s5, sc_s6, sc_s7;
	unsigned long	sc_t8, sc_t9,               sc_gp, sc_sp, sc_fp, sc_ra;

	unsigned long	sc_epc;
	unsigned long	sc_cause;

	unsigned long	sc_oldmask;
};

#endif /* __ASM_MIPS_SIGCONTEXT_H */