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