2010-08-09 06:56:47 +08:00
|
|
|
#ifndef _PERF_UI_PROGRESS_H_
|
|
|
|
#define _PERF_UI_PROGRESS_H_ 1
|
|
|
|
|
2014-04-26 03:31:02 +08:00
|
|
|
#include <linux/types.h>
|
2010-08-09 06:56:47 +08:00
|
|
|
|
2013-10-24 02:40:38 +08:00
|
|
|
void ui_progress__finish(void);
|
2014-12-18 04:24:45 +08:00
|
|
|
|
2013-10-24 02:40:38 +08:00
|
|
|
struct ui_progress {
|
|
|
|
const char *title;
|
|
|
|
u64 curr, next, step, total;
|
|
|
|
};
|
2014-12-18 04:24:45 +08:00
|
|
|
|
2013-10-24 02:40:38 +08:00
|
|
|
void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
|
|
|
|
void ui_progress__update(struct ui_progress *p, u64 adv);
|
|
|
|
|
2013-10-24 01:08:48 +08:00
|
|
|
struct ui_progress_ops {
|
2013-10-24 02:40:38 +08:00
|
|
|
void (*update)(struct ui_progress *p);
|
2012-11-13 21:30:34 +08:00
|
|
|
void (*finish)(void);
|
2012-11-13 21:30:32 +08:00
|
|
|
};
|
|
|
|
|
2013-10-24 01:08:48 +08:00
|
|
|
extern struct ui_progress_ops *ui_progress__ops;
|
2012-11-13 21:30:32 +08:00
|
|
|
|
2010-08-09 06:56:47 +08:00
|
|
|
#endif
|