blob: 1330ff33152629ee24a6d47445e18fe71d72a090 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _linux_POSIX_TIMERS_H
2#define _linux_POSIX_TIMERS_H
3
4#include <linux/spinlock.h>
5#include <linux/list.h>
6#include <linux/sched.h>
7
8union cpu_time_count {
9 cputime_t cpu;
10 unsigned long long sched;
11};
12
13struct cpu_timer_list {
14 struct list_head entry;
15 union cpu_time_count expires, incr;
16 struct task_struct *task;
17 int firing;
18};
19
20#define CPUCLOCK_PID(clock) ((pid_t) ~((clock) >> 3))
21#define CPUCLOCK_PERTHREAD(clock) \
22 (((clock) & (clockid_t) CPUCLOCK_PERTHREAD_MASK) != 0)
23#define CPUCLOCK_PID_MASK 7
24#define CPUCLOCK_PERTHREAD_MASK 4
25#define CPUCLOCK_WHICH(clock) ((clock) & (clockid_t) CPUCLOCK_CLOCK_MASK)
26#define CPUCLOCK_CLOCK_MASK 3
27#define CPUCLOCK_PROF 0
28#define CPUCLOCK_VIRT 1
29#define CPUCLOCK_SCHED 2
30#define CPUCLOCK_MAX 3
31
32#define MAKE_PROCESS_CPUCLOCK(pid, clock) \
33 ((~(clockid_t) (pid) << 3) | (clockid_t) (clock))
34#define MAKE_THREAD_CPUCLOCK(tid, clock) \
35 MAKE_PROCESS_CPUCLOCK((tid), (clock) | CPUCLOCK_PERTHREAD_MASK)
36
37/* POSIX.1b interval timer structure. */
38struct k_itimer {
39 struct list_head list; /* free/ allocate list */
40 spinlock_t it_lock;
41 clockid_t it_clock; /* which timer type */
42 timer_t it_id; /* timer id */
43 int it_overrun; /* overrun on pending signal */
44 int it_overrun_last; /* overrun on last delivered signal */
Thomas Gleixner2a698972006-01-09 20:52:28 -080045 int it_requeue_pending; /* waiting to requeue this timer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define REQUEUE_PENDING 1
47 int it_sigev_notify; /* notify word of sigevent struct */
Oleg Nesterov27af4242008-12-01 14:18:13 -080048 struct signal_struct *it_signal;
49 union {
50 struct pid *it_pid; /* pid of process to send signal to */
51 struct task_struct *it_process; /* for clock_nanosleep */
52 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct sigqueue *sigq; /* signal queue entry. */
54 union {
55 struct {
Thomas Gleixnerbecf8b52006-01-09 20:52:38 -080056 struct hrtimer timer;
57 ktime_t interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 } real;
59 struct cpu_timer_list cpu;
60 struct {
61 unsigned int clock;
62 unsigned int node;
63 unsigned long incr;
64 unsigned long expires;
65 } mmtimer;
66 } it;
67};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct k_clock {
Thomas Gleixner2a698972006-01-09 20:52:28 -080070 int res; /* in nanoseconds */
Thomas Gleixnera924b042006-01-09 20:52:27 -080071 int (*clock_getres) (const clockid_t which_clock, struct timespec *tp);
Richard Cochran1e6d7672011-02-01 13:50:58 +000072 int (*clock_set) (const clockid_t which_clock,
73 const struct timespec *tp);
Thomas Gleixnera924b042006-01-09 20:52:27 -080074 int (*clock_get) (const clockid_t which_clock, struct timespec * tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 int (*timer_create) (struct k_itimer *timer);
Thomas Gleixner2a698972006-01-09 20:52:28 -080076 int (*nsleep) (const clockid_t which_clock, int flags,
Thomas Gleixner97735f22006-01-09 20:52:37 -080077 struct timespec *, struct timespec __user *);
Toyo Abe1711ef32006-09-29 02:00:28 -070078 long (*nsleep_restart) (struct restart_block *restart_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int (*timer_set) (struct k_itimer * timr, int flags,
80 struct itimerspec * new_setting,
81 struct itimerspec * old_setting);
82 int (*timer_del) (struct k_itimer * timr);
83#define TIMER_RETRY 1
84 void (*timer_get) (struct k_itimer * timr,
85 struct itimerspec * cur_setting);
86};
87
Thomas Gleixner19769452011-02-01 13:51:06 +000088extern struct k_clock clock_posix_cpu;
89
Thomas Gleixnera924b042006-01-09 20:52:27 -080090void register_posix_clock(const clockid_t clock_id, struct k_clock *new_clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Thomas Gleixner2a698972006-01-09 20:52:28 -080092/* error handlers for timer_create, nanosleep and settime */
Thomas Gleixner97735f22006-01-09 20:52:37 -080093int do_posix_clock_nonanosleep(const clockid_t, int flags, struct timespec *,
94 struct timespec __user *);
Richard Cochran1e6d7672011-02-01 13:50:58 +000095int do_posix_clock_nosettime(const clockid_t, const struct timespec *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* function to call to trigger timer event */
98int posix_timer_event(struct k_itimer *timr, int si_private);
99
Thomas Gleixner2a698972006-01-09 20:52:28 -0800100int posix_cpu_clock_getres(const clockid_t which_clock, struct timespec *ts);
101int posix_cpu_clock_get(const clockid_t which_clock, struct timespec *ts);
102int posix_cpu_clock_set(const clockid_t which_clock, const struct timespec *ts);
103int posix_cpu_timer_create(struct k_itimer *timer);
104int posix_cpu_nsleep(const clockid_t which_clock, int flags,
Thomas Gleixner97735f22006-01-09 20:52:37 -0800105 struct timespec *rqtp, struct timespec __user *rmtp);
Toyo Abe1711ef32006-09-29 02:00:28 -0700106long posix_cpu_nsleep_restart(struct restart_block *restart_block);
Thomas Gleixner2a698972006-01-09 20:52:28 -0800107int posix_cpu_timer_set(struct k_itimer *timer, int flags,
108 struct itimerspec *new, struct itimerspec *old);
109int posix_cpu_timer_del(struct k_itimer *timer);
110void posix_cpu_timer_get(struct k_itimer *timer, struct itimerspec *itp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Thomas Gleixner2a698972006-01-09 20:52:28 -0800112void posix_cpu_timer_schedule(struct k_itimer *timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Thomas Gleixner2a698972006-01-09 20:52:28 -0800114void run_posix_cpu_timers(struct task_struct *task);
115void posix_cpu_timers_exit(struct task_struct *task);
116void posix_cpu_timers_exit_group(struct task_struct *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Thomas Gleixner2a698972006-01-09 20:52:28 -0800118void set_process_cpu_timer(struct task_struct *task, unsigned int clock_idx,
119 cputime_t *newval, cputime_t *oldval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Toyo Abe1711ef32006-09-29 02:00:28 -0700121long clock_nanosleep_restart(struct restart_block *restart_block);
122
Jiri Slaby5ab46b32009-08-28 14:05:12 +0200123void update_rlimit_cpu(struct task_struct *task, unsigned long rlim_new);
Frank Mayharf06febc2008-09-12 09:54:39 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif