.. | .. |
---|
1 | 1 | // SPDX-License-Identifier: GPL-2.0 |
---|
2 | 2 | #include <linux/compiler.h> |
---|
| 3 | +#include <stdio.h> |
---|
| 4 | +#include <string.h> |
---|
3 | 5 | #include "builtin.h" |
---|
4 | 6 | #include "perf.h" |
---|
5 | 7 | #include "debug.h" |
---|
.. | .. |
---|
63 | 65 | OPT_STRING('i', "input", &input_name, "file", "input file name"), |
---|
64 | 66 | #ifdef HAVE_LIBBABELTRACE_SUPPORT |
---|
65 | 67 | OPT_STRING(0, "to-ctf", &to_ctf, NULL, "Convert to CTF format"), |
---|
| 68 | + OPT_BOOLEAN(0, "tod", &opts.tod, "Convert time to wall clock time"), |
---|
66 | 69 | #endif |
---|
67 | 70 | OPT_BOOLEAN('f', "force", &opts.force, "don't complain, do it"), |
---|
68 | 71 | OPT_BOOLEAN(0, "all", &opts.all, "Convert all events"), |
---|