sigCodes.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* sigCodes.h - defines for the code passed to signal handlers */
  2. /* Copyright 1984-1996 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01f,01mar00,frf  Add SH4 support for T2.
  7. 01f,23apr97,hk   added support for SH.
  8. 01e,07jun95,yao  added support for PPC.
  9. 01d,19mar95,dvs  removed #ifdef TRON - tron no longer supported.
  10. 01c,09jun93,hdn  added support for I80X86
  11. 01b,22sep92,rrr  added support for c++
  12. 01a,20aug92,rrr  written.
  13. */
  14. #ifndef __INCsigCodesh
  15. #define __INCsigCodesh
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #if  CPU_FAMILY==I960
  20. #include "arch/i960/sigI960Codes.h"
  21. #endif /* CPU_FAMILY==I960 */
  22. #if  CPU_FAMILY==MC680X0
  23. #include "arch/mc68k/sigMc68kCodes.h"
  24. #endif /* CPU_FAMILY==MC680X0 */
  25. #if     CPU_FAMILY==MIPS
  26. #include "arch/mips/sigMipsCodes.h"
  27. #endif /* CPU_FAMILY==MIPS */
  28. #if CPU_FAMILY==SPARC
  29. #include "arch/sparc/sigSparcCodes.h"
  30. #endif /* CPU_FAMILY==SPARC */
  31. #if     CPU_FAMILY==I80X86
  32. #include "arch/i86/sigI86Codes.h"
  33. #endif /* CPU_FAMILY==I80X86 */
  34. #if     CPU_FAMILY==PPC
  35. #include "arch/ppc/sigPpcCodes.h"
  36. #endif /* CPU_FAMILY==PPC */
  37. #if CPU_FAMILY==SH
  38. #include "arch/sh/sigShCodes.h"
  39. #endif /* CPU_FAMILY==SH */
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. #endif /* __INCsigCodesh */