X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=tests%2Fcompile%2Fctf-types%2Fctf-types.c;h=c54ed6a4b6bb795845449612d852be5433116b91;hb=88c7c4eacbd4a98ad8e5df341ae2f1223b735194;hp=006976a4b061a15ddb1095cc075208a704f52ded;hpb=dbe6ade0ba17270b2cb119b9961bbb7e48ce4733;p=lttng-ust.git diff --git a/tests/compile/ctf-types/ctf-types.c b/tests/compile/ctf-types/ctf-types.c index 006976a4..c54ed6a4 100644 --- a/tests/compile/ctf-types/ctf-types.c +++ b/tests/compile/ctf-types/ctf-types.c @@ -1,24 +1,12 @@ /* - * Copyright (C) 2014 Geneviève Bastien + * 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 */ #include -#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;