The struct perf_error_ops is for flexible error logging. We can register appropriate functions based on front-end. Signed-off-by: Namhyung Kim <namhyung.kim@lge.com> Acked-by: Pekka Enberg <penberg@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1338265382-6872-4-git-send-email-namhyung@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			609 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			609 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _PERF_UI_UTIL_H_
 | 
						|
#define _PERF_UI_UTIL_H_ 1
 | 
						|
 | 
						|
#include <stdarg.h>
 | 
						|
 | 
						|
int ui__getch(int delay_secs);
 | 
						|
int ui__popup_menu(int argc, char * const argv[]);
 | 
						|
int ui__help_window(const char *text);
 | 
						|
int ui__dialog_yesno(const char *msg);
 | 
						|
int ui__question_window(const char *title, const char *text,
 | 
						|
			const char *exit_msg, int delay_secs);
 | 
						|
 | 
						|
struct perf_error_ops {
 | 
						|
	int (*error)(const char *format, va_list args);
 | 
						|
	int (*warning)(const char *format, va_list args);
 | 
						|
};
 | 
						|
 | 
						|
int perf_error__register(struct perf_error_ops *eops);
 | 
						|
int perf_error__unregister(struct perf_error_ops *eops);
 | 
						|
 | 
						|
#endif /* _PERF_UI_UTIL_H_ */
 |