Tracepoint API namespacing 'TRACEPOINT_DEFINE'
[lttng-ust.git] / tests / compile / ctf-types / ctf-types.c
index 006976a4b061a15ddb1095cc075208a704f52ded..c54ed6a4b6bb795845449612d852be5433116b91 100644 (file)
@@ -1,24 +1,12 @@
 /*
- * Copyright (C) 2014  Geneviève Bastien <gbastien@versatic.net>
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; version 2.1 of
- * the License.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ * Copyright (C) 2014 Geneviève Bastien <gbastien@versatic.net>
  */
 
 #include <unistd.h>
 
-#define TRACEPOINT_DEFINE
+#define LTTNG_UST_TRACEPOINT_DEFINE
 #include "ust_tests_ctf_types.h"
 
 int main(int argc, char **argv)
@@ -35,12 +23,12 @@ int main(int argc, char **argv)
 
        fprintf(stderr, "Tracing... ");
        for (i = 0; i < 100; i++) {
-               tracepoint(ust_tests_ctf_types, tptest, i, i % 6,
+               lttng_ust_tracepoint(ust_tests_ctf_types, tptest, i, i % 6,
                        i % 21);
        }
 
        for (i = 0; i < 10; i++) {
-               tracepoint(ust_tests_ctf_types, tptest_bis, i, i % 6);
+               lttng_ust_tracepoint(ust_tests_ctf_types, tptest_bis, i, i % 6);
        }
        fprintf(stderr, " done.\n");
        return 0;
This page took 0.02339 seconds and 4 git commands to generate.