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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_TIMER_H
  2. #define _LINUX_TIMER_H
  3. #include <linux/config.h>
  4. #include <linux/list.h>
  5. /*
  6.  * In Linux 2.4, static timers have been removed from the kernel.
  7.  * Timers may be dynamically created and destroyed, and should be initialized
  8.  * by a call to init_timer() upon creation.
  9.  *
  10.  * The "data" field enables use of a common timeout function for several
  11.  * timeouts. You can use this field to distinguish between the different
  12.  * invocations.
  13.  */
  14. struct timer_list {
  15. struct list_head list;
  16. unsigned long expires;
  17. unsigned long data;
  18. void (*function)(unsigned long);
  19. };
  20. extern void add_timer(struct timer_list * timer);
  21. extern int del_timer(struct timer_list * timer);
  22. #ifdef CONFIG_SMP
  23. extern int del_timer_sync(struct timer_list * timer);
  24. extern void sync_timers(void);
  25. #else
  26. #define del_timer_sync(t) del_timer(t)
  27. #define sync_timers() do { } while (0)
  28. #endif
  29. /*
  30.  * mod_timer is a more efficient way to update the expire field of an
  31.  * active timer (if the timer is inactive it will be activated)
  32.  * mod_timer(a,b) is equivalent to del_timer(a); a->expires = b; add_timer(a).
  33.  * If the timer is known to be not pending (ie, in the handler), mod_timer
  34.  * is less efficient than a->expires = b; add_timer(a).
  35.  */
  36. int mod_timer(struct timer_list *timer, unsigned long expires);
  37. extern void it_real_fn(unsigned long);
  38. static inline void init_timer(struct timer_list * timer)
  39. {
  40. timer->list.next = timer->list.prev = NULL;
  41. }
  42. static inline int timer_pending (const struct timer_list * timer)
  43. {
  44. return timer->list.next != NULL;
  45. }
  46. /*
  47.  * These inlines deal with timer wrapping correctly. You are 
  48.  * strongly encouraged to use them
  49.  * 1. Because people otherwise forget
  50.  * 2. Because if the timer wrap changes in future you wont have to
  51.  *    alter your driver code.
  52.  *
  53.  * time_after(a,b) returns true if the time a is after time b.
  54.  *
  55.  * Do this with "<0" and ">=0" to only test the sign of the result. A
  56.  * good compiler would generate better code (and a really good compiler
  57.  * wouldn't care). Gcc is currently neither.
  58.  */
  59. #define time_after(a,b) ((long)(b) - (long)(a) < 0)
  60. #define time_before(a,b) time_after(b,a)
  61. #define time_after_eq(a,b) ((long)(a) - (long)(b) >= 0)
  62. #define time_before_eq(a,b) time_after_eq(b,a)
  63. #endif