diff options
author | Jim Cromie <jim.cromie@gmail.com> | 2011-09-07 23:14:03 (GMT) |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-09-29 20:04:30 (GMT) |
commit | d4ffd04df175f8cab711d7857173285d971a406a (patch) | |
tree | b600b0d2c4706d8fdc2a32aca5d9abc7791c4028 /tools/perf | |
parent | a1bca6cc87fee26f3d9120b3f3418b7edfc91ec2 (diff) | |
download | linux-d4ffd04df175f8cab711d7857173285d971a406a.tar.xz |
perf stat: Allow tab as cvs delimiter
If option -x '\t' is given, convert '\t' to "\t". This makes cvs
printing more flexible.
Link: http://lkml.kernel.org/r/1315437244-3788-5-git-send-email-jim.cromie@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-stat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 076eda5..0ffbd97 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c @@ -1198,9 +1198,11 @@ int cmd_stat(int argc, const char **argv, const char *prefix __used) } } - if (csv_sep) + if (csv_sep) { csv_output = true; - else + if (!strcmp(csv_sep, "\\t")) + csv_sep = "\t"; + } else csv_sep = DEFAULT_SEPARATOR; /* |