posix-timers.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. #include <linux/timex.h>
  7. #include <linux/alarmtimer.h>
  8. union cpu_time_count {
  9. cputime_t cpu;
  10. unsigned long long sched;
  11. };
  12. struct cpu_timer_list {
  13. struct list_head entry;
  14. union cpu_time_count expires, incr;
  15. struct task_struct *task;
  16. int firing;
  17. };
  18. /*
  19. * Bit fields within a clockid:
  20. *
  21. * The most significant 29 bits hold either a pid or a file descriptor.
  22. *
  23. * Bit 2 indicates whether a cpu clock refers to a thread or a process.
  24. *
  25. * Bits 1 and 0 give the type: PROF=0, VIRT=1, SCHED=2, or FD=3.
  26. *
  27. * A clockid is invalid if bits 2, 1, and 0 are all set.
  28. */
  29. #define CPUCLOCK_PID(clock) ((pid_t) ~((clock) >> 3))
  30. #define CPUCLOCK_PERTHREAD(clock) \
  31. (((clock) & (clockid_t) CPUCLOCK_PERTHREAD_MASK) != 0)
  32. #define CPUCLOCK_PERTHREAD_MASK 4
  33. #define CPUCLOCK_WHICH(clock) ((clock) & (clockid_t) CPUCLOCK_CLOCK_MASK)
  34. #define CPUCLOCK_CLOCK_MASK 3
  35. #define CPUCLOCK_PROF 0
  36. #define CPUCLOCK_VIRT 1
  37. #define CPUCLOCK_SCHED 2
  38. #define CPUCLOCK_MAX 3
  39. #define CLOCKFD CPUCLOCK_MAX
  40. #define CLOCKFD_MASK (CPUCLOCK_PERTHREAD_MASK|CPUCLOCK_CLOCK_MASK)
  41. #define MAKE_PROCESS_CPUCLOCK(pid, clock) \
  42. ((~(clockid_t) (pid) << 3) | (clockid_t) (clock))
  43. #define MAKE_THREAD_CPUCLOCK(tid, clock) \
  44. MAKE_PROCESS_CPUCLOCK((tid), (clock) | CPUCLOCK_PERTHREAD_MASK)
  45. #define FD_TO_CLOCKID(fd) ((~(clockid_t) (fd) << 3) | CLOCKFD)
  46. #define CLOCKID_TO_FD(clk) ((unsigned int) ~((clk) >> 3))
  47. /* POSIX.1b interval timer structure. */
  48. struct k_itimer {
  49. struct list_head list; /* free/ allocate list */
  50. spinlock_t it_lock;
  51. clockid_t it_clock; /* which timer type */
  52. timer_t it_id; /* timer id */
  53. int it_overrun; /* overrun on pending signal */
  54. int it_overrun_last; /* overrun on last delivered signal */
  55. int it_requeue_pending; /* waiting to requeue this timer */
  56. #define REQUEUE_PENDING 1
  57. int it_sigev_notify; /* notify word of sigevent struct */
  58. struct signal_struct *it_signal;
  59. union {
  60. struct pid *it_pid; /* pid of process to send signal to */
  61. struct task_struct *it_process; /* for clock_nanosleep */
  62. };
  63. struct sigqueue *sigq; /* signal queue entry. */
  64. union {
  65. struct {
  66. struct hrtimer timer;
  67. ktime_t interval;
  68. } real;
  69. struct cpu_timer_list cpu;
  70. struct {
  71. unsigned int clock;
  72. unsigned int node;
  73. unsigned long incr;
  74. unsigned long expires;
  75. } mmtimer;
  76. struct alarm alarmtimer;
  77. } it;
  78. };
  79. struct k_clock {
  80. int (*clock_getres) (const clockid_t which_clock, struct timespec *tp);
  81. int (*clock_set) (const clockid_t which_clock,
  82. const struct timespec *tp);
  83. int (*clock_get) (const clockid_t which_clock, struct timespec * tp);
  84. int (*clock_adj) (const clockid_t which_clock, struct timex *tx);
  85. int (*timer_create) (struct k_itimer *timer);
  86. int (*nsleep) (const clockid_t which_clock, int flags,
  87. struct timespec *, struct timespec __user *);
  88. long (*nsleep_restart) (struct restart_block *restart_block);
  89. int (*timer_set) (struct k_itimer * timr, int flags,
  90. struct itimerspec * new_setting,
  91. struct itimerspec * old_setting);
  92. int (*timer_del) (struct k_itimer * timr);
  93. #define TIMER_RETRY 1
  94. void (*timer_get) (struct k_itimer * timr,
  95. struct itimerspec * cur_setting);
  96. };
  97. extern struct k_clock clock_posix_cpu;
  98. extern struct k_clock clock_posix_dynamic;
  99. void posix_timers_register_clock(const clockid_t clock_id, struct k_clock *new_clock);
  100. /* function to call to trigger timer event */
  101. int posix_timer_event(struct k_itimer *timr, int si_private);
  102. void posix_cpu_timer_schedule(struct k_itimer *timer);
  103. void run_posix_cpu_timers(struct task_struct *task);
  104. void posix_cpu_timers_exit(struct task_struct *task);
  105. void posix_cpu_timers_exit_group(struct task_struct *task);
  106. void set_process_cpu_timer(struct task_struct *task, unsigned int clock_idx,
  107. cputime_t *newval, cputime_t *oldval);
  108. long clock_nanosleep_restart(struct restart_block *restart_block);
  109. void update_rlimit_cpu(struct task_struct *task, unsigned long rlim_new);
  110. #endif