diff options
Diffstat (limited to 'rt-plot.h')
-rw-r--r-- | rt-plot.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -36,19 +36,19 @@ rt_plot_match_time(struct graph_info *ginfo, struct graph_plot *plot, | |||
36 | unsigned long long time); | 36 | unsigned long long time); |
37 | struct record* | 37 | struct record* |
38 | __find_rt_record(struct graph_info *ginfo, struct rt_plot_common *rt, | 38 | __find_rt_record(struct graph_info *ginfo, struct rt_plot_common *rt, |
39 | guint64 time, int display); | 39 | guint64 time, int display, unsigned long long range); |
40 | 40 | ||
41 | static inline struct record* | 41 | static inline struct record* |
42 | find_rt_record(struct graph_info *ginfo, struct rt_plot_common *rt, guint64 time) | 42 | find_rt_record(struct graph_info *ginfo, struct rt_plot_common *rt, guint64 time) |
43 | { | 43 | { |
44 | return __find_rt_record(ginfo, rt, time, 0); | 44 | return __find_rt_record(ginfo, rt, time, 0, 0); |
45 | } | 45 | } |
46 | 46 | ||
47 | static inline struct record* | 47 | static inline struct record* |
48 | find_rt_display_record(struct graph_info *ginfo, | 48 | find_rt_display_record(struct graph_info *ginfo, |
49 | struct rt_plot_common *rt, guint64 time) | 49 | struct rt_plot_common *rt, guint64 time) |
50 | { | 50 | { |
51 | return __find_rt_record(ginfo, rt, time, 1); | 51 | return __find_rt_record(ginfo, rt, time, 1, 0); |
52 | } | 52 | } |
53 | 53 | ||
54 | unsigned long long next_rts(struct graph_info *ginfo, int cpu, | 54 | unsigned long long next_rts(struct graph_info *ginfo, int cpu, |