aboutsummaryrefslogtreecommitdiffstats
path: root/trace-plot-cpu.c
diff options
context:
space:
mode:
authorJonathan <hermanjl@hermanjl-Aspire-5553G.(none)>2012-03-05 23:01:14 -0500
committerJonathan <hermanjl@hermanjl-Aspire-5553G.(none)>2012-03-05 23:01:14 -0500
commitbb3a47fd55929bbeef0a6dfdef1017391d5b7425 (patch)
tree06481a5e4dc47e3090d15a47257f0e32ae76aa4f /trace-plot-cpu.c
parent61266395ff4f371933c104cff6671aae7f43c3fd (diff)
rt-graph: simple real-time task plots
Diffstat (limited to 'trace-plot-cpu.c')
-rw-r--r--trace-plot-cpu.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/trace-plot-cpu.c b/trace-plot-cpu.c
index c7a37f5..00f07af 100644
--- a/trace-plot-cpu.c
+++ b/trace-plot-cpu.c
@@ -80,12 +80,8 @@ static int filter_record(struct graph_info *ginfo,
80 int wake_pid; 80 int wake_pid;
81 int filter; 81 int filter;
82 gint rpid; 82 gint rpid;
83 gint job;
84 unsigned long long release;
85 unsigned long long deadline;
86 unsigned long long period; 83 unsigned long long period;
87 unsigned long long wcet; 84 unsigned long long wcet;
88 unsigned long long when;
89 85
90 *orig_pid = pevent_data_pid(ginfo->pevent, record); 86 *orig_pid = pevent_data_pid(ginfo->pevent, record);
91 87
@@ -95,14 +91,6 @@ static int filter_record(struct graph_info *ginfo,
95 /* Load real-time records */ 91 /* Load real-time records */
96 rt_graph_check_task_param(&ginfo->rtinfo, ginfo->pevent, record, 92 rt_graph_check_task_param(&ginfo->rtinfo, ginfo->pevent, record,
97 &rpid, &wcet, &period); 93 &rpid, &wcet, &period);
98 rt_graph_check_task_release(&ginfo->rtinfo, ginfo->pevent, record,
99 &rpid, &job, &release, &deadline);
100 rt_graph_check_task_completion(&ginfo->rtinfo, ginfo->pevent, record,
101 &rpid, &job, &when);
102 rt_graph_check_task_block(&ginfo->rtinfo, ginfo->pevent, record,
103 &rpid, &when);
104 rt_graph_check_task_resume(&ginfo->rtinfo, ginfo->pevent, record,
105 &rpid, &when);
106 94
107 if (trace_graph_check_sched_switch(ginfo, record, sched_pid, &comm)) { 95 if (trace_graph_check_sched_switch(ginfo, record, sched_pid, &comm)) {
108 is_sched_switch = TRUE; 96 is_sched_switch = TRUE;