7aef3bf3da
Adding c2c command base wirings. Its implementation is going to be added gradually in following patches. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Don Zickus <dzickus@redhat.com> Cc: Joe Mario <jmario@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1474558645-19956-11-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
24 lines
511 B
C
24 lines
511 B
C
#include <linux/compiler.h>
|
|
#include <linux/kernel.h>
|
|
#include "util.h"
|
|
#include "debug.h"
|
|
#include "builtin.h"
|
|
#include <subcmd/parse-options.h>
|
|
|
|
static const char * const c2c_usage[] = {
|
|
"perf c2c",
|
|
NULL
|
|
};
|
|
|
|
int cmd_c2c(int argc, const char **argv, const char *prefix __maybe_unused)
|
|
{
|
|
const struct option c2c_options[] = {
|
|
OPT_INCR('v', "verbose", &verbose, "be more verbose"),
|
|
OPT_END()
|
|
};
|
|
|
|
argc = parse_options(argc, argv, c2c_options, c2c_usage,
|
|
PARSE_OPT_STOP_AT_NON_OPTION);
|
|
return 0;
|
|
}
|