distIncoLibP.h
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* distIncoLibP.h - header file for incorporation protocol */
  2. /* Copyright 1999 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,24may99,drm  added vxfusion to VxFusion related includes
  7. 01b,12aug98,drm  changed distTBufLibP.h to distTBufLib.h
  8. 01a,08sep97,ur   written.
  9. */
  10. #ifndef __INCdistIncoLibPh
  11. #define __INCdistIncoLibPh
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include "vxWorks.h"
  16. #include "vxfusion/private/distPktLibP.h"
  17. #include "vxfusion/private/distNodeLibP.h"
  18. #include "vxfusion/distTBufLib.h"
  19. /* defines */
  20. #define DIST_INCO_SERV_NAME "tServInco"
  21. #define DIST_INCO_SERV_TASK_PRIO 50
  22. #define DIST_INCO_SERV_TASK_STACK_SZ 5000
  23. #define DIST_INCO_SERV_NET_PRIO 0
  24. #define DIST_INCO_PRIO 
  25. (servTable[DIST_ID_INCO_SERV].servNetPrio)
  26. #define DIST_PKT_TYPE_INCO_REQ 0
  27. #define DIST_PKT_TYPE_INCO_DONE 1
  28. #define DIST_PKT_TYPE_INCO_UPNOW 2
  29. #define DIST_INCO_STATUS_OK OK
  30. #define DIST_INCO_STATUS_PROTOCOL_ERROR 1
  31. /* typedefs */
  32. typedef struct /* DIST_PKT_INCO */
  33. {
  34. DIST_PKT pktIncoHdr;
  35. } DIST_PKT_INCO;
  36. /* function prototypes */
  37. #if defined(__STDC__) || defined(__cplusplus)
  38. STATUS distIncoInit (void);
  39. STATUS distIncoStart (int waitNTicks);
  40. #else   /* __STDC__ */
  41. STATUS distIncoInit ();
  42. STATUS distIncoStart ();
  43. #endif  /* __STDC__ */
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif  /* __INCdistIncoLibPh */