diff options
Diffstat (limited to 'tools/perf/util/debug.c')
| -rw-r--r-- | tools/perf/util/debug.c | 28 | 
1 files changed, 2 insertions, 26 deletions
diff --git a/tools/perf/util/debug.c b/tools/perf/util/debug.c index 03f830b4814..399e74c34c1 100644 --- a/tools/perf/util/debug.c +++ b/tools/perf/util/debug.c @@ -23,10 +23,8 @@ int eprintf(int level, const char *fmt, ...)  	if (verbose >= level) {  		va_start(args, fmt); -		if (use_browser == 1) -			ret = ui_helpline__show_help(fmt, args); -		else if (use_browser == 2) -			ret = perf_gtk__show_helpline(fmt, args); +		if (use_browser >= 1) +			ui_helpline__vshow(fmt, args);  		else  			ret = vfprintf(stderr, fmt, args);  		va_end(args); @@ -49,28 +47,6 @@ int dump_printf(const char *fmt, ...)  	return ret;  } -#if !defined(NEWT_SUPPORT) && !defined(GTK2_SUPPORT) -int ui__warning(const char *format, ...) -{ -	va_list args; - -	va_start(args, format); -	vfprintf(stderr, format, args); -	va_end(args); -	return 0; -} -#endif - -int ui__error_paranoid(void) -{ -	return ui__error("Permission error - are you root?\n" -		    "Consider tweaking /proc/sys/kernel/perf_event_paranoid:\n" -		    " -1 - Not paranoid at all\n" -		    "  0 - Disallow raw tracepoint access for unpriv\n" -		    "  1 - Disallow cpu events for unpriv\n" -		    "  2 - Disallow kernel profiling for unpriv\n"); -} -  void trace_event(union perf_event *event)  {  	unsigned char *raw_event = (void *)event;  |