Clean-up: run format-cpp on the tree
[lttng-tools.git] / tests / regression / ust / baddr-statedump / tp.h
index d0abcadcfb1aa91b675a3f6babb3529f6f90979e..d1dcec4347babb87047b9a45a2416bac1b902d31 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
+ *
+ * SPDX-License-Identifier: MIT
+ *
+ */
+
 #undef TRACEPOINT_PROVIDER
 #define TRACEPOINT_PROVIDER my_provider
 
 
 #include <lttng/tracepoint.h>
 
-TRACEPOINT_EVENT(
-               my_provider,
-               my_first_tracepoint,
-               TP_ARGS(
-               int, my_integer_arg,
-               char*, my_string_arg
-       ),
-       TP_FIELDS(
-               ctf_string(my_string_field, my_string_arg)
-               ctf_integer(int, my_integer_field, my_integer_arg)
-       )
-)
+TRACEPOINT_EVENT(my_provider,
+                my_first_tracepoint,
+                TP_ARGS(int, my_integer_arg, char *, my_string_arg),
+                TP_FIELDS(ctf_string(my_string_field, my_string_arg)
+                                  ctf_integer(int, my_integer_field, my_integer_arg)))
 
 #endif /* _TP_H */
 
This page took 0.045606 seconds and 4 git commands to generate.