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

VxWorks

开发平台:

C/C++

  1. /* errnoLib.h - error status library header */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01j,22sep92,rrr  added support for c++
  7. 01i,18jul92,smb  added include errno.h.
  8. 01i,09jul92,smb  move function declarations from errno.h
  9. 01h,04jul92,jcf  cleaned up.
  10. 01g,26may92,rrr  the tree shuffle
  11. 01f,26nov91,llk  added S_errnoLib_NO_STAT_SYM_TBL.
  12.  removed errno and function prototypes (already in errno.h).
  13. 01e,04oct91,rrr  passed through the ansification filter
  14.   -fixed #else and #endif
  15.   -changed copyright notice
  16. 01d,05oct90,shl  added ANSI function prototypes.
  17.                  made #endif ANSI style.
  18.                  added copyright notice.
  19. 01c,02mar90,jcf  changed to support _errno.
  20. 01b,05jun88,dnw  changed stsLib to errnoLib.
  21. 01a,29apr88,gae  written.
  22. */
  23. #ifndef __INCerrnoLibh
  24. #define __INCerrnoLibh
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #include "vxWorks.h"
  29. #include "errno.h"
  30. /* status codes */
  31. #define S_errnoLib_NO_STAT_SYM_TBL      (M_errnoLib | 1)
  32. #if defined(__STDC__) || defined(__cplusplus)
  33. extern STATUS   errnoOfTaskSet (int taskId, int errorValue);
  34. extern STATUS   errnoSet (int errorValue);
  35. extern int      errnoGet (void);
  36. extern int      errnoOfTaskGet (int taskId);
  37. #else   /* __STDC__ */
  38. extern STATUS   errnoOfTaskSet ();
  39. extern STATUS   errnoSet ();
  40. extern int      errnoGet ();
  41. extern int      errnoOfTaskGet ();
  42. #endif  /* __STDC__ */
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif /* __INCerrnoLibh */