sigcontext.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.sigcontext.h 1.5 05/17/01 18:14:25 cort
  3.  */
  4. #ifndef _ASM_PPC_SIGCONTEXT_H
  5. #define _ASM_PPC_SIGCONTEXT_H
  6. #include <asm/ptrace.h>
  7. struct sigcontext_struct {
  8. unsigned long _unused[4];
  9. int signal;
  10. unsigned long handler;
  11. unsigned long oldmask;
  12. struct pt_regs  *regs;
  13. };
  14. #endif