diff options
author | Franck Bui-Huu <fbuihuu@gmail.com> | 2010-12-20 15:18:03 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-12-21 16:20:12 -0200 |
commit | 9d95b580a8d64ef4d1660a21a9de0658fe29f041 (patch) | |
tree | 07ba488512668856ddea211b3941504947f9bf2b /tools/perf/Documentation/perf-probe.txt | |
parent | 44b81e929b0c00e703a31a3d634b668bb27eb1c8 (diff) | |
download | blackbird-obmc-linux-9d95b580a8d64ef4d1660a21a9de0658fe29f041.tar.gz blackbird-obmc-linux-9d95b580a8d64ef4d1660a21a9de0658fe29f041.zip |
perf probe: Fix line range description since a single file is allowed
$ perf-probe -L sched.c
is currently allowed but not documented.
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
LKML-Reference: <1292854685-8230-5-git-send-email-fbuihuu@gmail.com>
Signed-off-by: Franck Bui-Huu <fbuihuu@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Documentation/perf-probe.txt')
-rw-r--r-- | tools/perf/Documentation/perf-probe.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/Documentation/perf-probe.txt b/tools/perf/Documentation/perf-probe.txt index 4e2323276984..86b797a35aa6 100644 --- a/tools/perf/Documentation/perf-probe.txt +++ b/tools/perf/Documentation/perf-probe.txt @@ -117,7 +117,7 @@ LINE SYNTAX ----------- Line range is described by following syntax. - "FUNC[:RLN[+NUM|-RLN2]]|SRC:ALN[+NUM|-ALN2]" + "FUNC[:RLN[+NUM|-RLN2]]|SRC[:ALN[+NUM|-ALN2]]" FUNC specifies the function name of showing lines. 'RLN' is the start line number from function entry line, and 'RLN2' is the end line number. As same as |