When /sys/kernel/debug is mounted the list can be imense, so use the pager like the other tools. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Acked-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> LKML-Reference: <20090812174459.GB3495@ghostprotocols.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			437 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			437 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * builtin-list.c
 | 
						|
 *
 | 
						|
 * Builtin list command: list all event types
 | 
						|
 *
 | 
						|
 * Copyright (C) 2009, Thomas Gleixner <tglx@linutronix.de>
 | 
						|
 * Copyright (C) 2008-2009, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
 | 
						|
 */
 | 
						|
#include "builtin.h"
 | 
						|
 | 
						|
#include "perf.h"
 | 
						|
 | 
						|
#include "util/parse-events.h"
 | 
						|
#include "util/cache.h"
 | 
						|
 | 
						|
int cmd_list(int argc __used, const char **argv __used, const char *prefix __used)
 | 
						|
{
 | 
						|
	setup_pager();
 | 
						|
	print_events();
 | 
						|
	return 0;
 | 
						|
}
 |