blob: 594bbe6935ddb0cb0978286a33d37496b179c852 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _PERF_UI_PROGRESS_H_
3#define _PERF_UI_PROGRESS_H_ 1
4
5#include <linux/types.h>
6
7void ui_progress__finish(void);
8
9struct ui_progress {
10 const char *title;
11 u64 curr, next, step, total;
12};
13
14void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
15void ui_progress__update(struct ui_progress *p, u64 adv);
16
17struct ui_progress_ops {
18 void (*update)(struct ui_progress *p);
19 void (*finish)(void);
20};
21
22extern struct ui_progress_ops *ui_progress__ops;
23
24#endif