]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/blobdiff - include/linux/hrtimer.h
hrtimer: remove duplicate helper function
[lisovros/linux_canprio.git] / include / linux / hrtimer.h
index 31a4d653389f6d8e76405451c75f88c721328c03..6d93dce61cbbc25c8b17d2f8f8c5c9d0e864ee9f 100644 (file)
@@ -316,6 +316,15 @@ static inline int hrtimer_is_queued(struct hrtimer *timer)
                (HRTIMER_STATE_ENQUEUED | HRTIMER_STATE_PENDING);
 }
 
+/*
+ * Helper function to check, whether the timer is running the callback
+ * function
+ */
+static inline int hrtimer_callback_running(struct hrtimer *timer)
+{
+       return timer->state & HRTIMER_STATE_CALLBACK;
+}
+
 /* Forward a hrtimer so it expires after now: */
 extern u64
 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval);