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