search for: 75bca39

Displaying 1 result from an estimated 1 matches for "75bca39".

2013 Jun 19
14
[PATCH 2/4] time: add a notifier chain for when the system time is stepped
...er_is_hres_active(struct hrtimer *timer) return 0; } -static inline void clock_was_set_delayed(void) { } - #endif -extern void clock_was_set(void); #ifdef CONFIG_TIMERFD extern void timerfd_clock_was_set(void); #else diff --git a/include/linux/time.h b/include/linux/time.h index d5d229b..75bca39 100644 --- a/include/linux/time.h +++ b/include/linux/time.h @@ -185,6 +185,11 @@ struct tms; extern void do_sys_times(struct tms *); /* + * Notifier chain called when system time is stepped. + */ +extern struct atomic_notifier_head clock_was_set_notifier_list; + +/* * Similar to the struct t...