aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2011-10-26 06:05:34 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-10-26 11:12:30 -0400
commit13d8f96c6c98532567b7620210a41d57dbc2039f (patch)
tree437ed0980edeecc6c5671fcdf690072f77803630 /tools
parentb8631e6ebb3aa033e21d68dd75029aceb96b79cd (diff)
perf hists browser: Use K_TIMER
In the switch case entry for the timer routine. Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-ypw3i9kmxoq28skx7jy914it@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/ui/browsers/hists.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c
index 4663dcb2a19b..44210d471719 100644
--- a/tools/perf/util/ui/browsers/hists.c
+++ b/tools/perf/util/ui/browsers/hists.c
@@ -314,8 +314,7 @@ static int hist_browser__run(struct hist_browser *self, const char *ev_name,
314 key = ui_browser__run(&self->b, delay_secs); 314 key = ui_browser__run(&self->b, delay_secs);
315 315
316 switch (key) { 316 switch (key) {
317 case -1: 317 case K_TIMER:
318 /* FIXME we need to check if it was es.reason == NEWT_EXIT_TIMER */
319 timer(arg); 318 timer(arg);
320 ui_browser__update_nr_entries(&self->b, self->hists->nr_entries); 319 ui_browser__update_nr_entries(&self->b, self->hists->nr_entries);
321 hists__browser_title(self->hists, title, sizeof(title), 320 hists__browser_title(self->hists, title, sizeof(title),
@@ -914,7 +913,7 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
914 "C Collapse all callchains\n" 913 "C Collapse all callchains\n"
915 "E Expand all callchains\n" 914 "E Expand all callchains\n"
916 "d Zoom into current DSO\n" 915 "d Zoom into current DSO\n"
917 "t Zoom into current Thread\n"); 916 "t Zoom into current Thread");
918 continue; 917 continue;
919 case K_ENTER: 918 case K_ENTER:
920 case K_RIGHT: 919 case K_RIGHT: