aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-02-10 20:00:39 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-02-10 20:00:39 -0500
commit6ad565c13a244862635ebc1d41df4f8d9956ed85 (patch)
tree83ab3c900124a9221f35e60382fb30dc05306b4d
parent685beb7106e87cf620724ad39b2246b8bf50a7ad (diff)
trace-graph: Insert new task plots below the plot that they were selected on
When selecting to plot a task, insert the plot beneath the plot that it was selected on. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--trace-graph.c9
-rw-r--r--trace-graph.h2
-rw-r--r--trace-plot-task.c4
3 files changed, 11 insertions, 4 deletions
diff --git a/trace-graph.c b/trace-graph.c
index 623abcb..59397cf 100644
--- a/trace-graph.c
+++ b/trace-graph.c
@@ -424,8 +424,15 @@ static void
424plot_task_clicked (gpointer data) 424plot_task_clicked (gpointer data)
425{ 425{
426 struct graph_info *ginfo = data; 426 struct graph_info *ginfo = data;
427 struct graph_plot *plot = ginfo->plot_clicked;
428 int pos;
429
430 if (plot)
431 pos = plot->pos + 1;
432 else
433 pos = ginfo->plots + 1;
427 434
428 graph_plot_task(ginfo, ginfo->filter_task_selected); 435 graph_plot_task(ginfo, ginfo->filter_task_selected, pos);
429 ginfo->draw_height = PLOT_SPACE(ginfo->plots); 436 ginfo->draw_height = PLOT_SPACE(ginfo->plots);
430 redraw_graph(ginfo); 437 redraw_graph(ginfo);
431 update_label_window(ginfo); 438 update_label_window(ginfo);
diff --git a/trace-graph.h b/trace-graph.h
index 1703ba1..3874aa9 100644
--- a/trace-graph.h
+++ b/trace-graph.h
@@ -315,6 +315,6 @@ int trace_graph_plot_display_info(struct graph_info *ginfo,
315void graph_plot_init_cpus(struct graph_info *ginfo, int cpus); 315void graph_plot_init_cpus(struct graph_info *ginfo, int cpus);
316 316
317/* task plot */ 317/* task plot */
318void graph_plot_task(struct graph_info *ginfo, int pid); 318void graph_plot_task(struct graph_info *ginfo, int pid, int pos);
319 319
320#endif /* _TRACE_GRAPH_H */ 320#endif /* _TRACE_GRAPH_H */
diff --git a/trace-plot-task.c b/trace-plot-task.c
index eb302fb..2770384 100644
--- a/trace-plot-task.c
+++ b/trace-plot-task.c
@@ -565,7 +565,7 @@ void graph_plot_init_tasks(struct graph_info *ginfo)
565 trace_graph_plot_insert(ginfo, 1, label, &task_plot_cb, task_info); 565 trace_graph_plot_insert(ginfo, 1, label, &task_plot_cb, task_info);
566} 566}
567 567
568void graph_plot_task(struct graph_info *ginfo, int pid) 568void graph_plot_task(struct graph_info *ginfo, int pid, int pos)
569{ 569{
570 struct task_plot_info *task_info; 570 struct task_plot_info *task_info;
571 struct graph_plot *plot; 571 struct graph_plot *plot;
@@ -580,7 +580,7 @@ void graph_plot_task(struct graph_info *ginfo, int pid)
580 len = strlen(comm) + 100; 580 len = strlen(comm) + 100;
581 label = malloc_or_die(len); 581 label = malloc_or_die(len);
582 snprintf(label, len, "%s-%d", comm, pid); 582 snprintf(label, len, "%s-%d", comm, pid);
583 plot = trace_graph_plot_append(ginfo, label, &task_plot_cb, task_info); 583 plot = trace_graph_plot_insert(ginfo, pos, label, &task_plot_cb, task_info);
584 free(label); 584 free(label);
585 585
586 trace_graph_plot_add_all_recs(ginfo, plot); 586 trace_graph_plot_add_all_recs(ginfo, plot);