 1d77822ea6
			
		
	
	
	1d77822ea6
	
	
	
		
			
			Adding perf_hpp__column_enable function to enable/disable hists column and removing diff command specific stuff 'need_pair and show_displacement' from hpp code. The diff command now enables/disables columns separately according to the user arguments. This will be helpful in future patches where more columns are added into diff output. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Ingo Molnar <mingo@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1349354994-17853-6-git-send-email-namhyung@kernel.org Signed-off-by: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			781 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			781 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <pthread.h>
 | |
| 
 | |
| #include "../util/cache.h"
 | |
| #include "../util/debug.h"
 | |
| #include "../util/hist.h"
 | |
| 
 | |
| pthread_mutex_t ui__lock = PTHREAD_MUTEX_INITIALIZER;
 | |
| 
 | |
| void setup_browser(bool fallback_to_pager)
 | |
| {
 | |
| 	if (!isatty(1) || dump_trace)
 | |
| 		use_browser = 0;
 | |
| 
 | |
| 	/* default to TUI */
 | |
| 	if (use_browser < 0)
 | |
| 		use_browser = 1;
 | |
| 
 | |
| 	switch (use_browser) {
 | |
| 	case 2:
 | |
| 		if (perf_gtk__init() == 0)
 | |
| 			break;
 | |
| 		/* fall through */
 | |
| 	case 1:
 | |
| 		use_browser = 1;
 | |
| 		if (ui__init() == 0)
 | |
| 			break;
 | |
| 		/* fall through */
 | |
| 	default:
 | |
| 		use_browser = 0;
 | |
| 		if (fallback_to_pager)
 | |
| 			setup_pager();
 | |
| 
 | |
| 		perf_hpp__init();
 | |
| 		break;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void exit_browser(bool wait_for_ok)
 | |
| {
 | |
| 	switch (use_browser) {
 | |
| 	case 2:
 | |
| 		perf_gtk__exit(wait_for_ok);
 | |
| 		break;
 | |
| 
 | |
| 	case 1:
 | |
| 		ui__exit(wait_for_ok);
 | |
| 		break;
 | |
| 
 | |
| 	default:
 | |
| 		break;
 | |
| 	}
 | |
| }
 |