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

VxWorks

开发平台:

C/C++

  1. /* excLibP.h - private exception handling subsystem header file */
  2. /* Copyright 1984-2001 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,13nov01,yvp  created.
  7. */
  8. #ifndef __INCexcLibPh
  9. #define __INCexcLibPh
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #ifndef _ASMLANGUAGE
  14. /* Select extended (32-bit) calls from the vector table to handlers */
  15. extern BOOL excExtendedVectors;
  16. /* function declarations */
  17. #if defined(__STDC__) || defined(__cplusplus)
  18. extern STATUS  excVecInit (void);
  19. extern STATUS  excInit (void);
  20. extern void  excTask (void);
  21. #else
  22. extern STATUS  excVecInit ();
  23. extern STATUS  excInit ();
  24. extern void  excTask ();
  25. #endif /* __STDC__ */
  26. #endif /* _ASMLANGUAGE */
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* __INCexcLibPh */