RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / tools / perf / util / ui / progress.h
bloba3820a0beb5beb46adf1fe69cbcee0687ae5cbe8
1 #ifndef _PERF_UI_PROGRESS_H_
2 #define _PERF_UI_PROGRESS_H_ 1
4 struct ui_progress;
6 struct ui_progress *ui_progress__new(const char *title, u64 total);
7 void ui_progress__delete(struct ui_progress *self);
9 void ui_progress__update(struct ui_progress *self, u64 curr);
11 #endif