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

VxWorks

开发平台:

C/C++

  1. /* posixShow.h - posix show routines */
  2. /* Copyright 1984-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,06apr93,smb written
  7. */
  8. #ifndef __INCposixshowh
  9. #define __INCposixshowh
  10. #include "semaphore.h"
  11. #include "mqueue.h"
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. extern CLASS_ID mqClassId;
  16. /* Function declarations */
  17. #if defined(__STDC__) || defined(__cplusplus)
  18. STATUS semaphoreShow (sem_t * semDesc, int level);
  19. STATUS mqShow        (mqd_t mqDesc, int level);
  20. #else   /* __STDC__ */
  21. STATUS semaphoreShow ();
  22. STATUS mqShow ();
  23. #endif  /* __STDC__ */
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* __INCposixshowh*/