 4779a2e99a
			
		
	
	
	4779a2e99a
	
	
	
		
			
			Reserving 'struct ui_progress' to the per progress instances, not to the particular set of operations used to implmenet a progress bar in the current UI (GTK, TUI, etc). Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-zjqbfp9gx3yo45s0rp9uv42n@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			483 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			483 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "gtk.h"
 | |
| #include "../../util/cache.h"
 | |
| #include "../../util/debug.h"
 | |
| 
 | |
| extern struct perf_error_ops perf_gtk_eops;
 | |
| 
 | |
| int perf_gtk__init(void)
 | |
| {
 | |
| 	perf_error__register(&perf_gtk_eops);
 | |
| 	perf_gtk__init_helpline();
 | |
| 	gtk_ui_progress__init();
 | |
| 	perf_gtk__init_hpp();
 | |
| 
 | |
| 	return gtk_init_check(NULL, NULL) ? 0 : -1;
 | |
| }
 | |
| 
 | |
| void perf_gtk__exit(bool wait_for_ok __maybe_unused)
 | |
| {
 | |
| 	if (!perf_gtk__is_active_context(pgctx))
 | |
| 		return;
 | |
| 	perf_error__unregister(&perf_gtk_eops);
 | |
| 	gtk_main_quit();
 | |
| }
 |