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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1996, 1997, 1999 by Ralf Baechle
  7.  * Copyright (C) 1999 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_SIGCONTEXT_H
  10. #define _ASM_SIGCONTEXT_H
  11. /*
  12.  * Keep this struct definition in sync with the sigcontext fragment
  13.  * in arch/mips/tools/offset.c
  14.  */
  15. struct sigcontext {
  16. unsigned long long sc_regs[32];
  17. unsigned long long sc_fpregs[32];
  18. unsigned long long sc_mdhi;
  19. unsigned long long sc_mdlo;
  20. unsigned long long sc_pc;
  21. unsigned int       sc_status;
  22. unsigned int       sc_ownedfp;
  23. unsigned int       sc_fpc_csr;
  24. unsigned int       sc_fpc_eir;
  25. unsigned int       sc_cause;
  26. unsigned int       sc_badvaddr;
  27. };
  28. #endif /* _ASM_SIGCONTEXT_H */