at v4.14-rc8 24 lines 519 B view raw
1/* 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