aboutsummaryrefslogtreecommitdiffstats
path: root/rt-plot.h
diff options
context:
space:
mode:
Diffstat (limited to 'rt-plot.h')
-rw-r--r--rt-plot.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rt-plot.h b/rt-plot.h
index cae15ae..1b04547 100644
--- a/rt-plot.h
+++ b/rt-plot.h
@@ -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);
37struct record* 37struct 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
41static inline struct record* 41static inline struct record*
42find_rt_record(struct graph_info *ginfo, struct rt_plot_common *rt, guint64 time) 42find_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
47static inline struct record* 47static inline struct record*
48find_rt_display_record(struct graph_info *ginfo, 48find_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
54unsigned long long next_rts(struct graph_info *ginfo, int cpu, 54unsigned long long next_rts(struct graph_info *ginfo, int cpu,