aboutsummaryrefslogtreecommitdiffstats
path: root/rt-graph.h
diff options
context:
space:
mode:
authorJonathan <hermanjl@hermanjl-Aspire-5553G.(none)>2012-03-06 23:18:16 -0500
committerJonathan <hermanjl@hermanjl-Aspire-5553G.(none)>2012-03-06 23:18:16 -0500
commitb305fe1222b244f020e22c31b204375cf02b823e (patch)
tree17056362e995bbc732c9e2d00fa77d4f11ed0bfa /rt-graph.h
parent471b1045226249deacf12ad419b24d962bded880 (diff)
rt-graph: real-time plots display info popup
When you hover close enough to an events time, the event name will display. This time is based on _litmus_ time, not record time.
Diffstat (limited to 'rt-graph.h')
-rw-r--r--rt-graph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rt-graph.h b/rt-graph.h
index be9aa44..17247f6 100644
--- a/rt-graph.h
+++ b/rt-graph.h
@@ -7,7 +7,7 @@
7#include "rt-plot-task.h" 7#include "rt-plot-task.h"
8 8
9#define RT_TS_FIELD "__rt_ts" 9#define RT_TS_FIELD "__rt_ts"
10#define TS_HASH_SIZE 6 10#define TS_HASH_SIZE 12
11struct ts_list; 11struct ts_list;
12 12
13struct rt_graph_info { 13struct rt_graph_info {
@@ -52,7 +52,7 @@ struct rt_graph_info {
52 struct format_field *resume_pid_field; 52 struct format_field *resume_pid_field;
53 struct format_field *resume_ts_field; 53 struct format_field *resume_ts_field;
54 54
55 /* Cache of ts fields for new events */ 55 /* Cache of ts fields for non-litmus events */
56 struct ts_list *events[TS_HASH_SIZE]; 56 struct ts_list *events[TS_HASH_SIZE];
57}; 57};
58 58