aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/ui/progress.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/ui/progress.h')
-rw-r--r--tools/perf/ui/progress.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/tools/perf/ui/progress.h b/tools/perf/ui/progress.h
index d9c205b59aa..f34f89eb607 100644
--- a/tools/perf/ui/progress.h
+++ b/tools/perf/ui/progress.h
@@ -1,8 +1,23 @@
#ifndef _PERF_UI_PROGRESS_H_
#define _PERF_UI_PROGRESS_H_ 1
-#include <../types.h>
+#include <linux/types.h>
-void ui_progress__update(u64 curr, u64 total, const char *title);
+void ui_progress__finish(void);
+
+struct ui_progress {
+ const char *title;
+ u64 curr, next, step, total;
+};
+
+void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
+void ui_progress__update(struct ui_progress *p, u64 adv);
+
+struct ui_progress_ops {
+ void (*update)(struct ui_progress *p);
+ void (*finish)(void);
+};
+
+extern struct ui_progress_ops *ui_progress__ops;
#endif