perf_counter tools: add in basic glue from Git
authorIngo Molnar <mingo@elte.hu>
Mon, 20 Apr 2009 13:00:56 +0000 (15:00 +0200)
committerIngo Molnar <mingo@elte.hu>
Mon, 20 Apr 2009 15:36:48 +0000 (17:36 +0200)
commit0780060124011b94af55830939c86cc0916be0f5
tree883a4d0ed69862ab49e6d4bf4e19debafeb5c48c
parentd24e473e5b2ca86d1288b9416227ccc603313d0f
perf_counter tools: add in basic glue from Git

First very raw version at having a central 'perf' command and
a list of subcommands:

  perf top
  perf stat
  perf record
  perf report
  ...

This is done by picking up Git's collection of utility functions,
and hacking them to build fine in this new environment.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
35 files changed:
Documentation/perf_counter/.gitignore [new file with mode: 0644]
Documentation/perf_counter/Makefile
Documentation/perf_counter/PERF-BUILD-OPTIONS [new file with mode: 0644]
Documentation/perf_counter/PERF-CFLAGS [new file with mode: 0644]
Documentation/perf_counter/PERF-VERSION-FILE [new file with mode: 0644]
Documentation/perf_counter/PERF-VERSION-GEN [new file with mode: 0755]
Documentation/perf_counter/abspath.c [new file with mode: 0644]
Documentation/perf_counter/alias.c [new file with mode: 0644]
Documentation/perf_counter/builtin-help.c [new file with mode: 0644]
Documentation/perf_counter/builtin-top.c [new file with mode: 0644]
Documentation/perf_counter/builtin.h [new file with mode: 0644]
Documentation/perf_counter/cache.h [new file with mode: 0644]
Documentation/perf_counter/command-list.txt [new file with mode: 0644]
Documentation/perf_counter/config.c [new file with mode: 0644]
Documentation/perf_counter/ctype.c [new file with mode: 0644]
Documentation/perf_counter/exec_cmd.c [new file with mode: 0644]
Documentation/perf_counter/exec_cmd.h [new file with mode: 0644]
Documentation/perf_counter/generate-cmdlist.sh [new file with mode: 0755]
Documentation/perf_counter/help.c [new file with mode: 0644]
Documentation/perf_counter/help.h [new file with mode: 0644]
Documentation/perf_counter/levenshtein.c [new file with mode: 0644]
Documentation/perf_counter/levenshtein.h [new file with mode: 0644]
Documentation/perf_counter/parse-options.c [new file with mode: 0644]
Documentation/perf_counter/parse-options.h [new file with mode: 0644]
Documentation/perf_counter/path.c [new file with mode: 0644]
Documentation/perf_counter/perf.c [new file with mode: 0644]
Documentation/perf_counter/quote.c [new file with mode: 0644]
Documentation/perf_counter/quote.h [new file with mode: 0644]
Documentation/perf_counter/run-command.c [new file with mode: 0644]
Documentation/perf_counter/run-command.h [new file with mode: 0644]
Documentation/perf_counter/strbuf.c [new file with mode: 0644]
Documentation/perf_counter/strbuf.h [new file with mode: 0644]
Documentation/perf_counter/usage.c [new file with mode: 0644]
Documentation/perf_counter/util.h [new file with mode: 0644]
Documentation/perf_counter/wrapper.c [new file with mode: 0644]