mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Several people have suggested that 'perf' has become a full-fledged tool that should be moved out of Documentation/. Move it to the (new) tools/ directory. Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			408 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-options.h"
 | 
						|
#include "util/parse-events.h"
 | 
						|
 | 
						|
int cmd_list(int argc, const char **argv, const char *prefix)
 | 
						|
{
 | 
						|
	print_events();
 | 
						|
	return 0;
 | 
						|
}
 |