Blame view

kernel/linux-imx6_3.14.28/tools/perf/ui/progress.h 479 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  #ifndef _PERF_UI_PROGRESS_H_
  #define _PERF_UI_PROGRESS_H_ 1
  
  #include <../types.h>
  
  void ui_progress__finish(void);
   
  struct ui_progress {
  	const char *title;
  	u64 curr, next, step, total;
  };
   
  void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
  void ui_progress__update(struct ui_progress *p, u64 adv);
  
  struct ui_progress_ops {
  	void (*update)(struct ui_progress *p);
  	void (*finish)(void);
  };
  
  extern struct ui_progress_ops *ui_progress__ops;
  
  #endif