sigcontext.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_M68k_SIGCONTEXT_H
  2. #define _ASM_M68k_SIGCONTEXT_H
  3. struct sigcontext {
  4. unsigned long  sc_mask;  /* old sigmask */
  5. unsigned long  sc_usp; /* old user stack pointer */
  6. unsigned long  sc_d0;
  7. unsigned long  sc_d1;
  8. unsigned long  sc_a0;
  9. unsigned long  sc_a1;
  10. unsigned short sc_sr;
  11. unsigned long  sc_pc;
  12. unsigned short sc_formatvec;
  13. unsigned long  sc_fpregs[2*3];  /* room for two fp registers */
  14. unsigned long  sc_fpcntl[3];
  15. unsigned char  sc_fpstate[216];
  16. };
  17. #endif