Clean-up: run format-cpp on the tree
[lttng-tools.git] / tests / utils / testapp / gen-ust-events / tp.h
index 6f22887cfbac098e907e48dafa6b43c114b62ce9..08c5f92de0105cea2a76745139dc19fe12818c6c 100644 (file)
 #define _TRACEPOINT_TP_H
 
 #include <lttng/tracepoint.h>
+
 #include <stdint.h>
 
-TRACEPOINT_ENUM(
-       tp, tptest_enum,
-       TP_ENUM_VALUES(
-               ctf_enum_auto("AUTO: EXPECT 0")
-               ctf_enum_value("VALUE: 23", 23)
-               ctf_enum_value("VALUE: 27", 27)
-               ctf_enum_auto("AUTO: EXPECT 28")
-               ctf_enum_range("RANGE: 101 TO 303", 101, 303)
-               ctf_enum_auto("AUTO: EXPECT 304")
-               ctf_enum_value("VALUE: -1", -1)
-       )
-)
+TRACEPOINT_ENUM(tp,
+               tptest_enum,
+               TP_ENUM_VALUES(ctf_enum_auto("AUTO: EXPECT 0") ctf_enum_value("VALUE: 23", 23)
+                                      ctf_enum_value("VALUE: 27",
+                                                     27) ctf_enum_auto("AUTO: EXPECT 28")
+                                              ctf_enum_range("RANGE: 101 TO 303", 101, 303)
+                                                      ctf_enum_auto("AUTO: EXPECT 304")
+                                                              ctf_enum_value("VALUE: -1", -1)))
 
-TRACEPOINT_EVENT(tp, tptest,
-       TP_ARGS(int, anint, int, netint, long *, values,
-               char *, text, size_t, textlen,
-               char *, etext, uint32_t * , net_values,
-               double, doublearg, float, floatarg),
+TRACEPOINT_EVENT(
+       tp,
+       tptest,
+       TP_ARGS(int,
+               anint,
+               int,
+               netint,
+               long *,
+               values,
+               char *,
+               text,
+               size_t,
+               textlen,
+               char *,
+               etext,
+               uint32_t *,
+               net_values,
+               double,
+               doublearg,
+               float,
+               floatarg),
        TP_FIELDS(
-               ctf_integer(int, intfield, anint)
-               ctf_integer_hex(int, intfield2, anint)
-               ctf_integer(long, longfield, anint)
-               ctf_integer(int, signedfield, -1)
-               ctf_integer_network(int, netintfield, netint)
-               ctf_integer_network_hex(int, netintfieldhex, netint)
-               ctf_array(long, arrfield1, values, 3)
-               ctf_array_text(char, arrfield2, text, 10)
-               ctf_array_network(uint32_t, arrfield3, net_values, 3)
-               ctf_sequence(char, seqfield1, text, size_t, textlen)
-               ctf_sequence_text(char, seqfield2, text, size_t, textlen)
-               ctf_sequence_network(uint32_t, seqfield3, net_values, size_t, 3)
-               ctf_sequence(long, seqfield4, values, size_t, 3)
-               ctf_string(stringfield, text)
-               ctf_string(stringfield2, etext)
-               ctf_float(float, floatfield, floatarg)
-               ctf_float(double, doublefield, doublearg)
-               ctf_enum(tp, tptest_enum, int, enum0, 0)
-               ctf_enum(tp, tptest_enum, int, enum23, 23)
-               ctf_enum(tp, tptest_enum, int, enum27, 27)
-               ctf_enum(tp, tptest_enum, int, enum28, 28)
-               ctf_enum(tp, tptest_enum, int, enum202, 202)
-               ctf_enum(tp, tptest_enum, int, enum304, 304)
-               ctf_enum(tp, tptest_enum, int, enumnegative, -1)
-       )
-)
+               ctf_integer(int, intfield, anint) ctf_integer_hex(int, intfield2, anint) ctf_integer(
+                       long, longfield, anint) ctf_integer(int,
+                                                           signedfield,
+                                                           -1) ctf_integer_network(int,
+                                                                                   netintfield,
+                                                                                   netint)
+                       ctf_integer_network_hex(int, netintfieldhex, netint) ctf_array(
+                               long,
+                               arrfield1,
+                               values,
+                               3) ctf_array_text(char,
+                                                 arrfield2,
+                                                 text,
+                                                 10) ctf_array_network(uint32_t,
+                                                                       arrfield3,
+                                                                       net_values,
+                                                                       3) ctf_sequence(char,
+                                                                                       seqfield1,
+                                                                                       text,
+                                                                                       size_t,
+                                                                                       textlen)
+                               ctf_sequence_text(char,
+                                                 seqfield2,
+                                                 text,
+                                                 size_t,
+                                                 textlen) ctf_sequence_network(uint32_t,
+                                                                               seqfield3,
+                                                                               net_values,
+                                                                               size_t,
+                                                                               3)
+                                       ctf_sequence(long, seqfield4, values, size_t, 3) ctf_string(
+                                               stringfield,
+                                               text) ctf_string(stringfield2,
+                                                                etext) ctf_float(float,
+                                                                                 floatfield,
+                                                                                 floatarg)
+                                               ctf_float(double, doublefield, doublearg) ctf_enum(
+                                                       tp,
+                                                       tptest_enum,
+                                                       int,
+                                                       enum0,
+                                                       0) ctf_enum(tp,
+                                                                   tptest_enum,
+                                                                   int,
+                                                                   enum23,
+                                                                   23) ctf_enum(tp,
+                                                                                tptest_enum,
+                                                                                int,
+                                                                                enum27,
+                                                                                27)
+                                                       ctf_enum(tp, tptest_enum, int, enum28, 28)
+                                                               ctf_enum(tp,
+                                                                        tptest_enum,
+                                                                        int,
+                                                                        enum202,
+                                                                        202) ctf_enum(tp,
+                                                                                      tptest_enum,
+                                                                                      int,
+                                                                                      enum304,
+                                                                                      304)
+                                                                       ctf_enum(tp,
+                                                                                tptest_enum,
+                                                                                int,
+                                                                                enumnegative,
+                                                                                -1)))
 
-TRACEPOINT_EVENT(tp, end,
-       TP_ARGS(),
-       TP_FIELDS(
-       )
-)
+TRACEPOINT_EVENT(tp, end, TP_ARGS(), TP_FIELDS())
 
 #endif /* _TRACEPOINT_TP_H */
 
This page took 0.025173 seconds and 4 git commands to generate.