diff options
author | Namhyung Kim <namhyung@kernel.org> | 2014-05-07 05:42:24 -0400 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-05-21 05:45:37 -0400 |
commit | 1c89fe9b0447f0ce393325e51911f8073432b7b4 (patch) | |
tree | 9e2c8db963acb19364e3469711d666757aa69caa /tools/perf/ui | |
parent | cfaa154b2335d4c8efdfcb65d9b12e944d1b74a6 (diff) |
perf tools: Introduce reset_output_field()
The reset_output_field() function is for clearing output field
settings and will be used for test code in later patch.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1400480762-22852-19-git-send-email-namhyung@kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf/ui')
-rw-r--r-- | tools/perf/ui/hist.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c index 61cf31e094f3..4484f5bd1b14 100644 --- a/tools/perf/ui/hist.c +++ b/tools/perf/ui/hist.c | |||
@@ -459,6 +459,23 @@ next: | |||
459 | } | 459 | } |
460 | } | 460 | } |
461 | 461 | ||
462 | void perf_hpp__reset_output_field(void) | ||
463 | { | ||
464 | struct perf_hpp_fmt *fmt, *tmp; | ||
465 | |||
466 | /* reset output fields */ | ||
467 | perf_hpp__for_each_format_safe(fmt, tmp) { | ||
468 | list_del_init(&fmt->list); | ||
469 | list_del_init(&fmt->sort_list); | ||
470 | } | ||
471 | |||
472 | /* reset sort keys */ | ||
473 | perf_hpp__for_each_sort_list_safe(fmt, tmp) { | ||
474 | list_del_init(&fmt->list); | ||
475 | list_del_init(&fmt->sort_list); | ||
476 | } | ||
477 | } | ||
478 | |||
462 | /* | 479 | /* |
463 | * See hists__fprintf to match the column widths | 480 | * See hists__fprintf to match the column widths |
464 | */ | 481 | */ |