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

VxWorks

开发平台:

C/C++

  1. /* semPxLibP.h - private POSIX semaphore library header */
  2. /* Copyright 1984-1994 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,12jan94,kdl  changed semaphoreInit() to semPxLibInit().
  7. 01b,17dec93,dvs  added semPxClassId
  8. 01a,29nov93,dvs  written
  9. */
  10. #ifndef __INCsemPxLibPh
  11. #define __INCsemPxLibPh
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include "vxWorks.h"
  16. extern CLASS_ID semPxClassId; /* POSIX sem class ID */
  17. /* function declarations */
  18. #if defined(__STDC__) || defined(__cplusplus)
  19. extern STATUS semPxLibInit (void);
  20. #else /* __STDC__ */
  21. extern STATUS semPxLibInit ();
  22. #endif /* __STDC__ */
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif /* __INCsemPxLibPh */