diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-06-06 15:19:13 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-06 18:58:30 +0200 |
commit | 8035e4288078cb806e7dd6bafe4d3e54d44cab3f (patch) | |
tree | 7b54e827020e9a9dbc2823009cb2815fc3e35fc9 /Documentation/perf_counter/Documentation/perf-annotate.txt | |
parent | 6e6b754ffdb6415723686c733f13275397e44422 (diff) | |
download | lwn-8035e4288078cb806e7dd6bafe4d3e54d44cab3f.tar.gz lwn-8035e4288078cb806e7dd6bafe4d3e54d44cab3f.zip |
perf_counter tools: Prepare for 'perf annotate'
Prepare for the 'perf annotate' implementation by splitting off
builtin-annotate.c from builtin-report.c.
( We keep this commit separate to ease the later librarization
of the facilities that perf-report and perf-annotate shares. )
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>
Diffstat (limited to 'Documentation/perf_counter/Documentation/perf-annotate.txt')
-rw-r--r-- | Documentation/perf_counter/Documentation/perf-annotate.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/perf_counter/Documentation/perf-annotate.txt b/Documentation/perf_counter/Documentation/perf-annotate.txt new file mode 100644 index 000000000000..a9d6d5ee2701 --- /dev/null +++ b/Documentation/perf_counter/Documentation/perf-annotate.txt @@ -0,0 +1,26 @@ +perf-annotate(1) +============== + +NAME +---- +perf-annotate - Read perf.data (created by perf record) and annotate functions + +SYNOPSIS +-------- +[verse] +'perf annotate' [-i <file> | --input=file] symbol_name + +DESCRIPTION +----------- +This command displays the performance counter profile information recorded +via perf record. + +OPTIONS +------- +-i:: +--input=:: + Input file name. (default: perf.data) + +SEE ALSO +-------- +linkperf:perf-record[1] |