summaryrefslogtreecommitdiffstats
path: root/kernel/time/posix-timers.h
diff options
context:
space:
mode:
authorThomas Gleixner2017-05-30 23:15:59 +0200
committerThomas Gleixner2017-06-04 15:40:32 +0200
commitf2c45807d3992fe0f173f34af9c347d907c31686 (patch)
tree8f151ca72ae445318c769d64c00657961b429732 /kernel/time/posix-timers.h
parentalarmtimer: Implement arm callback (diff)
downloadkernel-qcow2-linux-f2c45807d3992fe0f173f34af9c347d907c31686.tar.gz
kernel-qcow2-linux-f2c45807d3992fe0f173f34af9c347d907c31686.tar.xz
kernel-qcow2-linux-f2c45807d3992fe0f173f34af9c347d907c31686.zip
alarmtimer: Switch over to generic set/get/rearm routine
All required callbacks are in place. Switch the alarm timer based posix interval timer callbacks to the common implementation and remove the incorrect private implementation. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: John Stultz <john.stultz@linaro.org> Link: http://lkml.kernel.org/r/20170530211657.825471962@linutronix.de
Diffstat (limited to 'kernel/time/posix-timers.h')
-rw-r--r--kernel/time/posix-timers.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/time/posix-timers.h b/kernel/time/posix-timers.h
index b0ad77e18886..b086f5ba2f5b 100644
--- a/kernel/time/posix-timers.h
+++ b/kernel/time/posix-timers.h
@@ -33,3 +33,9 @@ extern const struct k_clock clock_thread;
extern const struct k_clock alarm_clock;
int posix_timer_event(struct k_itimer *timr, int si_private);
+
+void common_timer_get(struct k_itimer *timr, struct itimerspec64 *cur_setting);
+int common_timer_set(struct k_itimer *timr, int flags,
+ struct itimerspec64 *new_setting,
+ struct itimerspec64 *old_setting);
+int common_timer_del(struct k_itimer *timer);