perf ui: Add ui_progress__finish()
[platform/adaptation/renesas_rcar/renesas_kernel.git] / tools / perf / ui / progress.c
index f5e4d1b..3ec6956 100644 (file)
@@ -18,3 +18,9 @@ void ui_progress__update(u64 curr, u64 total, const char *title)
 {
        return progress_fns->update(curr, total, title);
 }
+
+void ui_progress__finish(void)
+{
+       if (progress_fns->finish)
+               progress_fns->finish();
+}