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

VxWorks

开发平台:

C/C++

  1. /* esfSimsparc.h - vxSim for Windows exception stack frame */
  2. /* Copyright 1993-1995 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,29apr98,cym  derived from simsolaris
  7. */
  8. #ifndef __INCesfSimnth
  9. #define __INCesfSimnth
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #include "regs.h"
  14. #include "excLib.h"
  15. #define ESF             EXC_INFO
  16. /* Overflow/Underflow Stack Frame */
  17. #define STACK_FRAME      0x00                  /* Stack Frame */
  18. #define SF_LOCALS        (STACK_FRAME + 0x00)  /* Local Registers */
  19. #define SF_INS           (STACK_FRAME + 0x20)  /* In Registers */
  20. #define SF_SPARE         (STACK_FRAME + 0x5C)  /* Spare Slot */
  21. #define STACK_FRAME_SIZE 0x60
  22. #define INIT_STACK_FRAME STACK_ROUND_UP ((((MAX_TASK_ARGS - 6) 
  23. * sizeof (int)) + (STACK_FRAME_SIZE - 4)))
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* __INCesfSimnth */