diff options
Diffstat (limited to 'tools/perf/ui/progress.c')
-rw-r--r-- | tools/perf/ui/progress.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/ui/progress.c b/tools/perf/ui/progress.c index f5e4d1b95c75..3ec695607a4d 100644 --- a/tools/perf/ui/progress.c +++ b/tools/perf/ui/progress.c | |||
@@ -18,3 +18,9 @@ void ui_progress__update(u64 curr, u64 total, const char *title) | |||
18 | { | 18 | { |
19 | return progress_fns->update(curr, total, title); | 19 | return progress_fns->update(curr, total, title); |
20 | } | 20 | } |
21 | |||
22 | void ui_progress__finish(void) | ||
23 | { | ||
24 | if (progress_fns->finish) | ||
25 | progress_fns->finish(); | ||
26 | } | ||