sigcontext.h 393 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
#ifndef _ASM_M68KNOMMU_SIGCONTEXT_H
#define _ASM_M68KNOMMU_SIGCONTEXT_H

struct sigcontext {
	unsigned long  sc_mask; 	/* old sigmask */
	unsigned long  sc_usp;		/* old user stack pointer */
	unsigned long  sc_d0;
	unsigned long  sc_d1;
	unsigned long  sc_a0;
	unsigned long  sc_a1;
11
	unsigned long  sc_a5;
L
Linus Torvalds 已提交
12 13 14 15 16 17
	unsigned short sc_sr;
	unsigned long  sc_pc;
	unsigned short sc_formatvec;
};

#endif