03aa6c67e7d12b27dc4ba324a94cf583c9af5bb7
[lttng-tools.git] / tests / ust-nevents / gen-nevents.c
1 /*
2 * Copyright (C) - 2009 Pierre-Marc Fournier
3 * Copyright (C) - 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) - 2012 David Goulet <dgoulet@efficios.com>
5 *
6 * This library is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by the
8 * Free Software Foundation; version 2.1 of the License.
9 *
10 * This library is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20 #include <arpa/inet.h>
21 #include <fcntl.h>
22 #include <signal.h>
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/mman.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <unistd.h>
31
32 #define TRACEPOINT_DEFINE
33 #include "ust_gen_nevents.h"
34
35 int main(int argc, char **argv)
36 {
37 int i, netint;
38 long values[] = { 1, 2, 3 };
39 char text[10] = "test";
40 double dbl = 2.0;
41 float flt = 2222.0;
42 unsigned int nr_iter = 100;
43
44 if (argc == 2) {
45 nr_iter = atoi(argv[1]);
46 }
47
48 for (i = 0; i < nr_iter; i++) {
49 netint = htonl(i);
50 tracepoint(ust_gen_nevents, tptest, i, netint, values, text,
51 strlen(text), dbl, flt);
52 }
53
54 return 0;
55 }
This page took 0.03047 seconds and 4 git commands to generate.