aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/perf_counter/builtin-record.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-06-02 17:37:05 -0400
committerIngo Molnar <mingo@elte.hu>2009-06-02 17:37:05 -0400
commitbf9e187637ca3d85cee7407e3af93995868cc87c (patch)
treec2ea1b5fad7f75082efb93abb7fa447940b7cb69 /Documentation/perf_counter/builtin-record.c
parent0a520c63e1625b92ef775da40192e1542910e7f6 (diff)
perf_counter tools: Make source code headers more coherent
The perf commands had different ways of describing themselves, introduce a coherent command-file-header format taken from the Git project. Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Marcelo Tosatti <mtosatti@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: John Kacur <jkacur@redhat.com> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/perf_counter/builtin-record.c')
-rw-r--r--Documentation/perf_counter/builtin-record.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/Documentation/perf_counter/builtin-record.c b/Documentation/perf_counter/builtin-record.c
index 8feb1192e09e..2741b3561bb7 100644
--- a/Documentation/perf_counter/builtin-record.c
+++ b/Documentation/perf_counter/builtin-record.c
@@ -1,9 +1,14 @@
1/* 1/*
2 * perf record: Record the profile of a workload (or a CPU, or a PID) into 2 * builtin-record.c
3 * the perf.data output file - for later analysis via perf report. 3 *
4 * Builtin record command: Record the profile of a workload
5 * (or a CPU, or a PID) into the perf.data output file - for
6 * later analysis via perf report.
4 */ 7 */
5#include "perf.h"
6#include "builtin.h" 8#include "builtin.h"
9
10#include "perf.h"
11
7#include "util/util.h" 12#include "util/util.h"
8#include "util/parse-options.h" 13#include "util/parse-options.h"
9#include "util/parse-events.h" 14#include "util/parse-events.h"