|  | @@ -0,0 +1,70 @@
 | 
		
	
		
			
			|  | 1 | +/*
 | 
		
	
		
			
			|  | 2 | + * Copyright (C) 2014 Michael Brown <mbrown@fensystems.co.uk>.
 | 
		
	
		
			
			|  | 3 | + *
 | 
		
	
		
			
			|  | 4 | + * This program is free software; you can redistribute it and/or
 | 
		
	
		
			
			|  | 5 | + * modify it under the terms of the GNU General Public License as
 | 
		
	
		
			
			|  | 6 | + * published by the Free Software Foundation; either version 2 of the
 | 
		
	
		
			
			|  | 7 | + * License, or any later version.
 | 
		
	
		
			
			|  | 8 | + *
 | 
		
	
		
			
			|  | 9 | + * This program is distributed in the hope that it will be useful, but
 | 
		
	
		
			
			|  | 10 | + * WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
		
	
		
			
			|  | 11 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
		
	
		
			
			|  | 12 | + * General Public License for more details.
 | 
		
	
		
			
			|  | 13 | + *
 | 
		
	
		
			
			|  | 14 | + * You should have received a copy of the GNU General Public License
 | 
		
	
		
			
			|  | 15 | + * along with this program; if not, write to the Free Software
 | 
		
	
		
			
			|  | 16 | + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 | 
		
	
		
			
			|  | 17 | + * 02110-1301, USA.
 | 
		
	
		
			
			|  | 18 | + */
 | 
		
	
		
			
			|  | 19 | +
 | 
		
	
		
			
			|  | 20 | +FILE_LICENCE ( GPL2_OR_LATER );
 | 
		
	
		
			
			|  | 21 | +
 | 
		
	
		
			
			|  | 22 | +#include <stdio.h>
 | 
		
	
		
			
			|  | 23 | +#include <getopt.h>
 | 
		
	
		
			
			|  | 24 | +#include <ipxe/command.h>
 | 
		
	
		
			
			|  | 25 | +#include <ipxe/parseopt.h>
 | 
		
	
		
			
			|  | 26 | +#include <usr/profstat.h>
 | 
		
	
		
			
			|  | 27 | +
 | 
		
	
		
			
			|  | 28 | +/** @file
 | 
		
	
		
			
			|  | 29 | + *
 | 
		
	
		
			
			|  | 30 | + * Profiling commands
 | 
		
	
		
			
			|  | 31 | + *
 | 
		
	
		
			
			|  | 32 | + */
 | 
		
	
		
			
			|  | 33 | +
 | 
		
	
		
			
			|  | 34 | +/** "profstat" options */
 | 
		
	
		
			
			|  | 35 | +struct profstat_options {};
 | 
		
	
		
			
			|  | 36 | +
 | 
		
	
		
			
			|  | 37 | +/** "profstat" option list */
 | 
		
	
		
			
			|  | 38 | +static struct option_descriptor profstat_opts[] = {};
 | 
		
	
		
			
			|  | 39 | +
 | 
		
	
		
			
			|  | 40 | +/** "profstat" command descriptor */
 | 
		
	
		
			
			|  | 41 | +static struct command_descriptor profstat_cmd =
 | 
		
	
		
			
			|  | 42 | +	COMMAND_DESC ( struct profstat_options, profstat_opts, 0, 0, NULL );
 | 
		
	
		
			
			|  | 43 | +
 | 
		
	
		
			
			|  | 44 | +/**
 | 
		
	
		
			
			|  | 45 | + * The "profstat" command
 | 
		
	
		
			
			|  | 46 | + *
 | 
		
	
		
			
			|  | 47 | + * @v argc		Argument count
 | 
		
	
		
			
			|  | 48 | + * @v argv		Argument list
 | 
		
	
		
			
			|  | 49 | + * @ret rc		Return status code
 | 
		
	
		
			
			|  | 50 | + */
 | 
		
	
		
			
			|  | 51 | +static int profstat_exec ( int argc, char **argv ) {
 | 
		
	
		
			
			|  | 52 | +	struct profstat_options opts;
 | 
		
	
		
			
			|  | 53 | +	int rc;
 | 
		
	
		
			
			|  | 54 | +
 | 
		
	
		
			
			|  | 55 | +	/* Parse options */
 | 
		
	
		
			
			|  | 56 | +	if ( ( rc = parse_options ( argc, argv, &profstat_cmd, &opts ) ) != 0 )
 | 
		
	
		
			
			|  | 57 | +		return rc;
 | 
		
	
		
			
			|  | 58 | +
 | 
		
	
		
			
			|  | 59 | +	profstat();
 | 
		
	
		
			
			|  | 60 | +
 | 
		
	
		
			
			|  | 61 | +	return 0;
 | 
		
	
		
			
			|  | 62 | +}
 | 
		
	
		
			
			|  | 63 | +
 | 
		
	
		
			
			|  | 64 | +/** Profiling commands */
 | 
		
	
		
			
			|  | 65 | +struct command profstat_commands[] __command = {
 | 
		
	
		
			
			|  | 66 | +	{
 | 
		
	
		
			
			|  | 67 | +		.name = "profstat",
 | 
		
	
		
			
			|  | 68 | +		.exec = profstat_exec,
 | 
		
	
		
			
			|  | 69 | +	},
 | 
		
	
		
			
			|  | 70 | +};
 |