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

VxWorks

开发平台:

C/C++

  1. /* tickLib.h - header file for tickLib.c */
  2. /* Copyright 1984-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 02c,22may02,jgn  removed vxTicks and vxAbsTicks declarations - SPR #70255
  7. 02b,22sep92,rrr  added support for c++
  8. 02a,04jul92,jcf  cleaned up.
  9. 01c,26may92,rrr  the tree shuffle
  10. 01b,04oct91,rrr  passed through the ansification filter
  11.   -fixed #else and #endif
  12.   -changed VOID to void
  13.   -changed copyright notice
  14. 01a,05oct90,shl created.
  15. */
  16. #ifndef __INCtickLibh
  17. #define __INCtickLibh
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /* function declarations */
  22. #if defined(__STDC__) || defined(__cplusplus)
  23. extern void  tickAnnounce (void);
  24. extern void  tickSet (ULONG ticks);
  25. extern ULONG  tickGet (void);
  26. #else
  27. extern void  tickAnnounce ();
  28. extern void  tickSet ();
  29. extern ULONG  tickGet ();
  30. #endif /* __STDC__ */
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif /* __INCtickLibh */