diff options
Diffstat (limited to 'tools/perf/util/ui/browsers/hists.c')
-rw-r--r-- | tools/perf/util/ui/browsers/hists.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c index d76287513525..9e23bce98827 100644 --- a/tools/perf/util/ui/browsers/hists.c +++ b/tools/perf/util/ui/browsers/hists.c | |||
@@ -577,6 +577,16 @@ static int hist_browser__show_entry(struct hist_browser *self, | |||
577 | if (!current_entry || !self->b.navkeypressed) | 577 | if (!current_entry || !self->b.navkeypressed) |
578 | ui_browser__set_color(&self->b, HE_COLORSET_NORMAL); | 578 | ui_browser__set_color(&self->b, HE_COLORSET_NORMAL); |
579 | 579 | ||
580 | if (symbol_conf.show_nr_samples) { | ||
581 | slsmg_printf(" %11u", entry->nr_events); | ||
582 | width -= 12; | ||
583 | } | ||
584 | |||
585 | if (symbol_conf.show_total_period) { | ||
586 | slsmg_printf(" %12" PRIu64, entry->period); | ||
587 | width -= 13; | ||
588 | } | ||
589 | |||
580 | slsmg_write_nstring(s, width); | 590 | slsmg_write_nstring(s, width); |
581 | ++row; | 591 | ++row; |
582 | ++printed; | 592 | ++printed; |