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

VxWorks

开发平台:

C/C++

  1. /* semEvLib.h - semaphore events library header file */
  2. /* Copyright 2001 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,20sep01.bwa  Initial creation.
  7. */
  8. #ifndef __INCsemEvLibh
  9. #define __INCsemEvLibh
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #include "vxWorks.h"
  14. #include "semLib.h"
  15. #ifndef _ASMLANGUAGE
  16. /* function declarations */
  17. #if defined(__STDC__) || defined(__cplusplus)
  18. extern STATUS  semEvStart (SEM_ID semId, UINT32 events, UINT8 options);
  19. extern STATUS semEvStop  (SEM_ID semId);
  20. #else /* __STDC__ */
  21. extern STATUS  semEvStart ();
  22. extern STATUS semEvStop  ();
  23. #endif /* __STDC__ */
  24. #endif /* _ASMLANGUAGE */
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif /* __INCsemEvLibh */