diff options
author | John Stultz <john.stultz@linaro.org> | 2011-08-10 23:09:24 +0400 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2011-08-11 01:55:26 +0400 |
commit | 9e26476243e438f4534a562660c1296a15a9e202 (patch) | |
tree | d70609d91f0aab85ad9768500b7e57623d9e3eae /include/linux/posix-timers.h | |
parent | d77e23accec56bf2ba12187fe77a2f500a511282 (diff) | |
download | linux-9e26476243e438f4534a562660c1296a15a9e202.tar.xz |
alarmtimers: Remove period from alarm structure
Now that periodic alarmtimers are managed by the handler function,
remove the period value from the alarm structure and let the handlers
manage the interval on their own.
CC: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/posix-timers.h')
-rw-r--r-- | include/linux/posix-timers.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/posix-timers.h b/include/linux/posix-timers.h index 959c14132f46..042058fdb0af 100644 --- a/include/linux/posix-timers.h +++ b/include/linux/posix-timers.h @@ -81,7 +81,10 @@ struct k_itimer { unsigned long incr; unsigned long expires; } mmtimer; - struct alarm alarmtimer; + struct { + struct alarm alarmtimer; + ktime_t interval; + } alarm; struct rcu_head rcu; } it; }; |