8 lttng-gen-tp - Generate LTTng-UST tracepoint provider code
14 *lttng-gen-tp* [option:--verbose] [option:--output='FILE'.c]
15 [option:--output='FILE'.h] [option:--output='FILE'.o] 'TEMPLATE'
20 The `lttng-gen-tp` tool simplifies the generation of LTTng-UST
21 tracepoint provider files. It takes a simple template file, 'TEMPLATE',
22 and generates the necessary C code to use the defined tracepoints in
23 your application. See the <<template-file-format,Template file format>>
24 section below for more information about the format of 'TEMPLATE'.
26 Currently, `lttng-gen-tp` can generate the `.h`, `.c`, and `.o` files
27 associated with your tracepoint provider. The generated `.h` file can be
28 included directly in your application. You can let `lttng-gen-tp`
29 generate the `.o` file or compile the `.c` file yourself. See
30 man:lttng-ust(3) for more information about compiling LTTng-UST
33 By default, `lttng-gen-tp` generates the `.h`, `.c`, and `.o` files,
34 their basename being the basename of 'TEMPLATE'. You can generate one or
35 more specific file types with the option:--output option, repeated if
39 [[template-file-format]]
42 The template file, which usually has the `.tp` extension, contains a
43 list of `TRACEPOINT_EVENT()` definitions and other optional definition
44 entries, like `TRACEPOINT_LOGLEVEL()`. See man:lttng-ust(3) for
45 the complete list of available definitions.
47 The `TRACEPOINT_EVENT()` definitions are written as you would write them
48 in an LTTng-UST template provider header file. C comments are supported
49 (`/* */` and `//`), as well as lines starting with `#`.
51 NOTE: The provider name (the first argument of `TRACEPOINT_EVENT()`)
52 must be the same in all the `TRACEPOINT_EVENT()` macros of 'TEMPLATE'.
56 ---------------------------------------
58 // Tracepoint provider name
61 // Tracepoint/event name
64 // Tracepoint arguments (input)
65 TP_ARGS(char *, text),
67 // Tracepoint/event fields (output)
69 ctf_string(message, text)
72 ---------------------------------------
77 option:-o, option:--output='FILE'::
78 Do not generate default files: generate 'FILE'.
80 The extension of 'FILE' determines what is generated, amongst `.h`,
81 `.c`, and `.o`. This option can be used more than one time to generate
84 option:-v, option:--verbose::
87 option:-h, option:--help::
94 C compiler to use. Default: `cc`, then `gcc` if `cc` is not found.
95 This option is only relevant when generating the `.o` file.
98 Flags and options passed directly to the compiler (`$CC`).
99 This option is only relevant when generating the `.o` file.
111 include::common-footer.txt[]
116 `lttng-gen-tp` is part of the LTTng-UST project.
118 `lttng-gen-tp` is distributed under the
119 http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html[GNU General
120 Public License, version 2]. See the
121 https://github.com/lttng/lttng-ust/blob/master/COPYING[`COPYING`] file
127 `lttng-gen-tp` was originally written by
128 mailto:yannick.brosseau@gmail.com[Yannick Brosseau]. It is currently
129 maintained by mailto:mathieu.desnoyers@efficios.com[Mathieu Desnoyers].