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

VxWorks

开发平台:

C/C++

  1. /* posixName.h - posix table synchronisation */
  2. /* Copyright 1984-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,13dec93,dvs changed prototype to match that in posixNameLib.c
  7. 01a,06apr93,smb written
  8. */
  9. #ifndef __INCposixNameh
  10. #define __INCposixNameh
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include "symLib.h"
  15. /* Defines */
  16. #define POSIX_TBL_HASH_SIZE_LOG2 6       /* 64 entry hash table for status */
  17. /* Function declarations */
  18. #if defined(__STDC__) || defined(__cplusplus)
  19. SYMTAB_ID posixNameTblInit (int PosixTblHashSize);
  20. #else   /* __STDC__ */
  21. SYMTAB_ID posixNameTblInit ();
  22. #endif  /* __STDC__ */
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif /* __INCposixNameh*/