aboutsummaryrefslogtreecommitdiffstats
path: root/trace-plot-cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'trace-plot-cpu.c')
-rw-r--r--trace-plot-cpu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/trace-plot-cpu.c b/trace-plot-cpu.c
index 9b927e1..469b4fd 100644
--- a/trace-plot-cpu.c
+++ b/trace-plot-cpu.c
@@ -77,6 +77,7 @@ static int filter_record(struct graph_info *ginfo,
77 gboolean is_sched_switch = FALSE; 77 gboolean is_sched_switch = FALSE;
78 gboolean is_wakeup = FALSE; 78 gboolean is_wakeup = FALSE;
79 const char *comm; 79 const char *comm;
80 char *name;
80 int wake_pid; 81 int wake_pid;
81 int filter; 82 int filter;
82 gint rpid; 83 gint rpid;
@@ -89,8 +90,10 @@ static int filter_record(struct graph_info *ginfo,
89 90
90 91
91 /* Load real-time records */ 92 /* Load real-time records */
92 rt_graph_check_task_param(&ginfo->rtg_info, ginfo->pevent, record, 93 rt_graph_check_task_param(ginfo, record,
93 &rpid, &wcet, &period); 94 &rpid, &wcet, &period);
95 rt_graph_check_container_param(ginfo, record, &rpid, &name);
96 rt_graph_check_server_param(ginfo, record, &rpid, &rpid, &period, &wcet);
94 97
95 if (trace_graph_check_sched_switch(ginfo, record, sched_pid, &comm)) { 98 if (trace_graph_check_sched_switch(ginfo, record, sched_pid, &comm)) {
96 is_sched_switch = TRUE; 99 is_sched_switch = TRUE;