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

VxWorks

开发平台:

C/C++

  1. /* wdbArchIfLib.h - header file for arch-specific routines needed by wdb */
  2. /* Copyright 1984-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,25apr02,jhw  Added C++ support (SPR 76304).
  7. 01c,15jun95,ms removed _sigCtxIntLock prototype
  8. 01b,05apr95,ms new data types.
  9. 01a,21dec94,ms  written.
  10. */
  11. #ifndef __INCwdbArchIfLibh
  12. #define __INCwdbArchIfLibh
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /* includes */
  17. #include "wdb/wdb.h"
  18. #include "wdb/wdbRegs.h"
  19. #include "intLib.h"
  20. /* function prototypes */
  21. #if defined(__STDC__)
  22. extern int    _sigCtxSave (WDB_IU_REGS *pContext);
  23. extern void    _sigCtxLoad (WDB_IU_REGS *pContext);
  24. extern void    _sigCtxSetup (WDB_IU_REGS *pContext, char *pStackBase,
  25.  void (*entry)(), int *pArgs);
  26. extern void _sigCtxRtnValSet (WDB_IU_REGS *pContext, int val);
  27. #else   /* __STDC__ */
  28. extern int    _sigCtxSave ();
  29. extern void    _sigCtxLoad ();
  30. extern void    _sigCtxSetup ();
  31. extern void _sigCtxRtnValSet ();
  32. #endif  /* __STDC__ */
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif  /* __INCwdbArchIfLibh */