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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _linux_POSIX_TIMERS_H
  2. #define _linux_POSIX_TIMERS_H
  3. #include <linux/spinlock.h>
  4. #include <linux/list.h>
  5. #include <linux/sched.h>
  6. union cpu_time_count {
  7. cputime_t cpu;
  8. unsigned long long sched;
  9. };
  10. struct cpu_timer_list {
  11. struct list_head entry;
  12. union cpu_time_count expires, incr;
  13. struct task_struct *task;
  14. int firing;
  15. };
  16. #define CPUCLOCK_PID(clock) ((pid_t) ~((clock) >> 3))
  17. #define CPUCLOCK_PERTHREAD(clock) 
  18. (((clock) & (clockid_t) CPUCLOCK_PERTHREAD_MASK) != 0)
  19. #define CPUCLOCK_PID_MASK 7
  20. #define CPUCLOCK_PERTHREAD_MASK 4
  21. #define CPUCLOCK_WHICH(clock) ((clock) & (clockid_t) CPUCLOCK_CLOCK_MASK)
  22. #define CPUCLOCK_CLOCK_MASK 3
  23. #define CPUCLOCK_PROF 0
  24. #define CPUCLOCK_VIRT 1
  25. #define CPUCLOCK_SCHED 2
  26. #define CPUCLOCK_MAX 3
  27. #define MAKE_PROCESS_CPUCLOCK(pid, clock) 
  28. ((~(clockid_t) (pid) << 3) | (clockid_t) (clock))
  29. #define MAKE_THREAD_CPUCLOCK(tid, clock) 
  30. MAKE_PROCESS_CPUCLOCK((tid), (clock) | CPUCLOCK_PERTHREAD_MASK)
  31. /* POSIX.1b interval timer structure. */
  32. struct k_itimer {
  33. struct list_head list; /* free/ allocate list */
  34. spinlock_t it_lock;
  35. clockid_t it_clock; /* which timer type */
  36. timer_t it_id; /* timer id */
  37. int it_overrun; /* overrun on pending signal  */
  38. int it_overrun_last; /* overrun on last delivered signal */
  39. int it_requeue_pending;         /* waiting to requeue this timer */
  40. #define REQUEUE_PENDING 1
  41. int it_sigev_notify; /* notify word of sigevent struct */
  42. int it_sigev_signo; /* signo word of sigevent struct */
  43. sigval_t it_sigev_value; /* value word of sigevent struct */
  44. struct task_struct *it_process; /* process to send signal to */
  45. struct sigqueue *sigq; /* signal queue entry. */
  46. union {
  47. struct {
  48. struct timer_list timer;
  49. struct list_head abs_timer_entry; /* clock abs_timer_list */
  50. struct timespec wall_to_prev;   /* wall_to_monotonic used when set */
  51. unsigned long incr; /* interval in jiffies */
  52. } real;
  53. struct cpu_timer_list cpu;
  54. struct {
  55. unsigned int clock;
  56. unsigned int node;
  57. unsigned long incr;
  58. unsigned long expires;
  59. } mmtimer;
  60. } it;
  61. };
  62. struct k_clock_abs {
  63. struct list_head list;
  64. spinlock_t lock;
  65. };
  66. struct k_clock {
  67. int res; /* in nano seconds */
  68. int (*clock_getres) (clockid_t which_clock, struct timespec *tp);
  69. struct k_clock_abs *abs_struct;
  70. int (*clock_set) (clockid_t which_clock, struct timespec * tp);
  71. int (*clock_get) (clockid_t which_clock, struct timespec * tp);
  72. int (*timer_create) (struct k_itimer *timer);
  73. int (*nsleep) (clockid_t which_clock, int flags, struct timespec *);
  74. int (*timer_set) (struct k_itimer * timr, int flags,
  75.   struct itimerspec * new_setting,
  76.   struct itimerspec * old_setting);
  77. int (*timer_del) (struct k_itimer * timr);
  78. #define TIMER_RETRY 1
  79. void (*timer_get) (struct k_itimer * timr,
  80.    struct itimerspec * cur_setting);
  81. };
  82. void register_posix_clock(clockid_t clock_id, struct k_clock *new_clock);
  83. /* Error handlers for timer_create, nanosleep and settime */
  84. int do_posix_clock_notimer_create(struct k_itimer *timer);
  85. int do_posix_clock_nonanosleep(clockid_t, int flags, struct timespec *);
  86. int do_posix_clock_nosettime(clockid_t, struct timespec *tp);
  87. /* function to call to trigger timer event */
  88. int posix_timer_event(struct k_itimer *timr, int si_private);
  89. struct now_struct {
  90. unsigned long jiffies;
  91. };
  92. #define posix_get_now(now) (now)->jiffies = jiffies;
  93. #define posix_time_before(timer, now) 
  94.                       time_before((timer)->expires, (now)->jiffies)
  95. #define posix_bump_timer(timr, now)
  96.          do {
  97.               long delta, orun;
  98.       delta = now.jiffies - (timr)->it.real.timer.expires;
  99.               if (delta >= 0) {
  100.            orun = 1 + (delta / (timr)->it.real.incr);
  101.           (timr)->it.real.timer.expires +=
  102.  orun * (timr)->it.real.incr;
  103.                   (timr)->it_overrun += orun;
  104.               }
  105.             }while (0)
  106. int posix_cpu_clock_getres(clockid_t which_clock, struct timespec *);
  107. int posix_cpu_clock_get(clockid_t which_clock, struct timespec *);
  108. int posix_cpu_clock_set(clockid_t which_clock, const struct timespec *tp);
  109. int posix_cpu_timer_create(struct k_itimer *);
  110. int posix_cpu_nsleep(clockid_t, int, struct timespec *);
  111. int posix_cpu_timer_set(struct k_itimer *, int,
  112. struct itimerspec *, struct itimerspec *);
  113. int posix_cpu_timer_del(struct k_itimer *);
  114. void posix_cpu_timer_get(struct k_itimer *, struct itimerspec *);
  115. void posix_cpu_timer_schedule(struct k_itimer *);
  116. void run_posix_cpu_timers(struct task_struct *);
  117. void posix_cpu_timers_exit(struct task_struct *);
  118. void posix_cpu_timers_exit_group(struct task_struct *);
  119. void set_process_cpu_timer(struct task_struct *, unsigned int,
  120.    cputime_t *, cputime_t *);
  121. #endif