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

VxWorks

开发平台:

C/C++

  1. /* trcLib.h - header file for trcLib.c */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01h,22sep92,rrr  added support for c++
  7. 01g,18sep92,jcf  added include of regs.h.
  8. 01f,04jul92,jcf  cleaned up.
  9. 01e,26may92,rrr  the tree shuffle
  10. 01d,07apr92,yao  made ANSI prototype of trcStack() consistent for all
  11.  architecutres.
  12. 01c,09jan92,jwt  modified trcStack() prototype for SPARC.
  13. 01b,04oct91,rrr  passed through the ansification filter
  14.   -fixed #else and #endif
  15.   -changed VOID to void
  16.   -changed copyright notice
  17. 01a,05oct90,shl created.
  18. */
  19. #ifndef __INCtrcLibh
  20. #define __INCtrcLibh
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #include "regs.h"
  25. /* function declarations */
  26. #if defined(__STDC__) || defined(__cplusplus)
  27. extern void  trcStack (REG_SET *pRegs, FUNCPTR printRtn, int tid);
  28. #else
  29. extern void  trcStack ();
  30. #endif /* __STDC__ */
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif /* __INCtrcLibh */