diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-09-13 10:51:04 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-13 11:55:23 -0400 |
commit | c13f0d3c8165e9592102687fa999da0a0d9c3724 (patch) | |
tree | 5f679c0b390a7b7f3b0e116c75ecc0f1784c56a2 /tools/perf/builtin-sched.c | |
parent | 459ec28ab404d7afcd512ce9b855959ad301605a (diff) |
perf sched: Add 'perf sched trace', improve documentation
Alias 'perf sched trace' to 'perf trace', for workflow completeness.
Add a bit of documentation for perf sched.
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>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-sched.c')
-rw-r--r-- | tools/perf/builtin-sched.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index ede40c1429a8..8db0fd222f80 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1597,7 +1597,7 @@ more: | |||
1597 | } | 1597 | } |
1598 | 1598 | ||
1599 | static const char * const sched_usage[] = { | 1599 | static const char * const sched_usage[] = { |
1600 | "perf sched [<options>] {record|latency|replay}", | 1600 | "perf sched [<options>] {record|latency|replay|trace}", |
1601 | NULL | 1601 | NULL |
1602 | }; | 1602 | }; |
1603 | 1603 | ||
@@ -1719,6 +1719,11 @@ int cmd_sched(int argc, const char **argv, const char *prefix __used) | |||
1719 | usage_with_options(replay_usage, replay_options); | 1719 | usage_with_options(replay_usage, replay_options); |
1720 | } | 1720 | } |
1721 | __cmd_replay(); | 1721 | __cmd_replay(); |
1722 | } else if (!strcmp(argv[0], "trace")) { | ||
1723 | /* | ||
1724 | * Aliased to 'perf trace' for now: | ||
1725 | */ | ||
1726 | return cmd_trace(argc, argv, prefix); | ||
1722 | } else { | 1727 | } else { |
1723 | usage_with_options(sched_usage, sched_options); | 1728 | usage_with_options(sched_usage, sched_options); |
1724 | } | 1729 | } |