time.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_TIME_H
  2. #define _LINUX_TIME_H
  3. #include <linux/types.h>
  4. #ifdef __KERNEL__
  5. #include <linux/seqlock.h>
  6. #endif
  7. #ifndef _STRUCT_TIMESPEC
  8. #define _STRUCT_TIMESPEC
  9. struct timespec {
  10. time_t tv_sec; /* seconds */
  11. long tv_nsec; /* nanoseconds */
  12. };
  13. #endif /* _STRUCT_TIMESPEC */
  14. struct timeval {
  15. time_t tv_sec; /* seconds */
  16. suseconds_t tv_usec; /* microseconds */
  17. };
  18. struct timezone {
  19. int tz_minuteswest; /* minutes west of Greenwich */
  20. int tz_dsttime; /* type of dst correction */
  21. };
  22. #ifdef __KERNEL__
  23. /* Parameters used to convert the timespec values */
  24. #define MSEC_PER_SEC (1000L)
  25. #define USEC_PER_SEC (1000000L)
  26. #define NSEC_PER_SEC (1000000000L)
  27. #define NSEC_PER_USEC (1000L)
  28. static __inline__ int timespec_equal(struct timespec *a, struct timespec *b) 
  29. return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec);
  30. /* Converts Gregorian date to seconds since 1970-01-01 00:00:00.
  31.  * Assumes input in normal date format, i.e. 1980-12-31 23:59:59
  32.  * => year=1980, mon=12, day=31, hour=23, min=59, sec=59.
  33.  *
  34.  * [For the Julian calendar (which was used in Russia before 1917,
  35.  * Britain & colonies before 1752, anywhere else before 1582,
  36.  * and is still in use by some communities) leave out the
  37.  * -year/100+year/400 terms, and add 10.]
  38.  *
  39.  * This algorithm was first published by Gauss (I think).
  40.  *
  41.  * WARNING: this function will overflow on 2106-02-07 06:28:16 on
  42.  * machines were long is 32-bit! (However, as time_t is signed, we
  43.  * will already get problems at other places on 2038-01-19 03:14:08)
  44.  */
  45. static inline unsigned long
  46. mktime (unsigned int year, unsigned int mon,
  47. unsigned int day, unsigned int hour,
  48. unsigned int min, unsigned int sec)
  49. {
  50. if (0 >= (int) (mon -= 2)) { /* 1..12 -> 11,12,1..10 */
  51. mon += 12; /* Puts Feb last since it has leap day */
  52. year -= 1;
  53. }
  54. return (((
  55. (unsigned long) (year/4 - year/100 + year/400 + 367*mon/12 + day) +
  56. year*365 - 719499
  57.     )*24 + hour /* now have hours */
  58.   )*60 + min /* now have minutes */
  59. )*60 + sec; /* finally seconds */
  60. }
  61. extern struct timespec xtime;
  62. extern struct timespec wall_to_monotonic;
  63. extern seqlock_t xtime_lock;
  64. static inline unsigned long get_seconds(void)
  65. return xtime.tv_sec;
  66. }
  67. struct timespec current_kernel_time(void);
  68. #define CURRENT_TIME (current_kernel_time())
  69. #define CURRENT_TIME_SEC ((struct timespec) { xtime.tv_sec, 0 })
  70. extern void do_gettimeofday(struct timeval *tv);
  71. extern int do_settimeofday(struct timespec *tv);
  72. extern int do_sys_settimeofday(struct timespec *tv, struct timezone *tz);
  73. extern void clock_was_set(void); // call when ever the clock is set
  74. extern int do_posix_clock_monotonic_gettime(struct timespec *tp);
  75. extern long do_utimes(char __user * filename, struct timeval * times);
  76. struct itimerval;
  77. extern int do_setitimer(int which, struct itimerval *value, struct itimerval *ovalue);
  78. extern int do_getitimer(int which, struct itimerval *value);
  79. extern void getnstimeofday (struct timespec *tv);
  80. extern struct timespec timespec_trunc(struct timespec t, unsigned gran);
  81. static inline void
  82. set_normalized_timespec (struct timespec *ts, time_t sec, long nsec)
  83. {
  84. while (nsec > NSEC_PER_SEC) {
  85. nsec -= NSEC_PER_SEC;
  86. ++sec;
  87. }
  88. while (nsec < 0) {
  89. nsec += NSEC_PER_SEC;
  90. --sec;
  91. }
  92. ts->tv_sec = sec;
  93. ts->tv_nsec = nsec;
  94. }
  95. #endif /* __KERNEL__ */
  96. #define NFDBITS __NFDBITS
  97. #define FD_SETSIZE __FD_SETSIZE
  98. #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
  99. #define FD_CLR(fd,fdsetp) __FD_CLR(fd,fdsetp)
  100. #define FD_ISSET(fd,fdsetp) __FD_ISSET(fd,fdsetp)
  101. #define FD_ZERO(fdsetp) __FD_ZERO(fdsetp)
  102. /*
  103.  * Names of the interval timers, and structure
  104.  * defining a timer setting.
  105.  */
  106. #define ITIMER_REAL 0
  107. #define ITIMER_VIRTUAL 1
  108. #define ITIMER_PROF 2
  109. struct  itimerspec {
  110.         struct  timespec it_interval;    /* timer period */
  111.         struct  timespec it_value;       /* timer expiration */
  112. };
  113. struct itimerval {
  114. struct timeval it_interval; /* timer interval */
  115. struct timeval it_value; /* current value */
  116. };
  117. /*
  118.  * The IDs of the various system clocks (for POSIX.1b interval timers).
  119.  */
  120. #define CLOCK_REALTIME   0
  121. #define CLOCK_MONOTONIC   1
  122. #define CLOCK_PROCESS_CPUTIME_ID 2
  123. #define CLOCK_THREAD_CPUTIME_ID  3
  124. #define CLOCK_REALTIME_HR  4
  125. #define CLOCK_MONOTONIC_HR   5
  126. /*
  127.  * The IDs of various hardware clocks
  128.  */
  129. #define CLOCK_SGI_CYCLE 10
  130. #define MAX_CLOCKS 16
  131. #define CLOCKS_MASK  (CLOCK_REALTIME | CLOCK_MONOTONIC | 
  132.                      CLOCK_REALTIME_HR | CLOCK_MONOTONIC_HR)
  133. #define CLOCKS_MONO (CLOCK_MONOTONIC & CLOCK_MONOTONIC_HR)
  134. /*
  135.  * The various flags for setting POSIX.1b interval timers.
  136.  */
  137. #define TIMER_ABSTIME 0x01
  138. #endif