Add CTF enum type support for UST registry
[lttng-tools.git] / tests / regression / ust / type-declarations / type-declarations.c
1 /*
2 * Copyright (C) 2014 Geneviève Bastien <gbastien@versatic.net>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 /*
20 * This test generates a few events and exits.
21 */
22
23 #include <unistd.h>
24
25 #define TRACEPOINT_DEFINE
26 #define TRACEPOINT_CREATE_PROBES
27 #include "ust_tests_td.h"
28
29 int main(int argc, char *argv[])
30 {
31 int i;
32
33 for (i = 0; i < 2; i++) {
34 tracepoint(ust_tests_td, tptest, i % 2, (i+1) % 2, i % 21);
35 tracepoint(ust_tests_td, tptest_bis, i % 2);
36 }
37
38 return 0;
39 }
This page took 0.029191 seconds and 4 git commands to generate.