time.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_TIME_H
  2. #define _LINUX_TIME_H
  3. #include <asm/param.h>
  4. #include <linux/types.h>
  5. #ifndef _STRUCT_TIMESPEC
  6. #define _STRUCT_TIMESPEC
  7. struct timespec {
  8. time_t tv_sec; /* seconds */
  9. long tv_nsec; /* nanoseconds */
  10. };
  11. #endif /* _STRUCT_TIMESPEC */
  12. #ifdef __KERNEL__
  13. /*
  14.  * Change timeval to jiffies, trying to avoid the
  15.  * most obvious overflows..
  16.  *
  17.  * And some not so obvious.
  18.  *
  19.  * Note that we don't want to return MAX_LONG, because
  20.  * for various timeout reasons we often end up having
  21.  * to wait "jiffies+1" in order to guarantee that we wait
  22.  * at _least_ "jiffies" - so "jiffies+1" had better still
  23.  * be positive.
  24.  */
  25. #define MAX_JIFFY_OFFSET ((~0UL >> 1)-1)
  26. static __inline__ unsigned long
  27. timespec_to_jiffies(struct timespec *value)
  28. {
  29. unsigned long sec = value->tv_sec;
  30. long nsec = value->tv_nsec;
  31. if (sec >= (MAX_JIFFY_OFFSET / HZ))
  32. return MAX_JIFFY_OFFSET;
  33. nsec += 1000000000L / HZ - 1;
  34. nsec /= 1000000000L / HZ;
  35. return HZ * sec + nsec;
  36. }
  37. static __inline__ void
  38. jiffies_to_timespec(unsigned long jiffies, struct timespec *value)
  39. {
  40. value->tv_nsec = (jiffies % HZ) * (1000000000L / HZ);
  41. value->tv_sec = jiffies / HZ;
  42. }
  43. /* Converts Gregorian date to seconds since 1970-01-01 00:00:00.
  44.  * Assumes input in normal date format, i.e. 1980-12-31 23:59:59
  45.  * => year=1980, mon=12, day=31, hour=23, min=59, sec=59.
  46.  *
  47.  * [For the Julian calendar (which was used in Russia before 1917,
  48.  * Britain & colonies before 1752, anywhere else before 1582,
  49.  * and is still in use by some communities) leave out the
  50.  * -year/100+year/400 terms, and add 10.]
  51.  *
  52.  * This algorithm was first published by Gauss (I think).
  53.  *
  54.  * WARNING: this function will overflow on 2106-02-07 06:28:16 on
  55.  * machines were long is 32-bit! (However, as time_t is signed, we
  56.  * will already get problems at other places on 2038-01-19 03:14:08)
  57.  */
  58. static inline unsigned long
  59. mktime (unsigned int year, unsigned int mon,
  60. unsigned int day, unsigned int hour,
  61. unsigned int min, unsigned int sec)
  62. {
  63. if (0 >= (int) (mon -= 2)) { /* 1..12 -> 11,12,1..10 */
  64. mon += 12; /* Puts Feb last since it has leap day */
  65. year -= 1;
  66. }
  67. return (((
  68. (unsigned long) (year/4 - year/100 + year/400 + 367*mon/12 + day) +
  69. year*365 - 719499
  70.     )*24 + hour /* now have hours */
  71.   )*60 + min /* now have minutes */
  72. )*60 + sec; /* finally seconds */
  73. }
  74. #endif /* __KERNEL__ */
  75. struct timeval {
  76. time_t tv_sec; /* seconds */
  77. suseconds_t tv_usec; /* microseconds */
  78. };
  79. struct timezone {
  80. int tz_minuteswest; /* minutes west of Greenwich */
  81. int tz_dsttime; /* type of dst correction */
  82. };
  83. #define NFDBITS __NFDBITS
  84. #ifdef __KERNEL__
  85. extern void do_gettimeofday(struct timeval *tv);
  86. extern void do_settimeofday(struct timeval *tv);
  87. #endif
  88. #define FD_SETSIZE __FD_SETSIZE
  89. #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
  90. #define FD_CLR(fd,fdsetp) __FD_CLR(fd,fdsetp)
  91. #define FD_ISSET(fd,fdsetp) __FD_ISSET(fd,fdsetp)
  92. #define FD_ZERO(fdsetp) __FD_ZERO(fdsetp)
  93. /*
  94.  * Names of the interval timers, and structure
  95.  * defining a timer setting.
  96.  */
  97. #define ITIMER_REAL 0
  98. #define ITIMER_VIRTUAL 1
  99. #define ITIMER_PROF 2
  100. struct  itimerspec {
  101.         struct  timespec it_interval;    /* timer period */
  102.         struct  timespec it_value;       /* timer expiration */
  103. };
  104. struct itimerval {
  105. struct timeval it_interval; /* timer interval */
  106. struct timeval it_value; /* current value */
  107. };
  108. #endif