Fix dynamic linking with GNU gold linker
[lttng-ust.git] / tests / demo / demo.c
CommitLineData
580d134b
MD
1/*
2 * Copyright (C) 2009 Pierre-Marc Fournier
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; version 2.1 of
8 * the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <stdio.h>
21#include <unistd.h>
22#include <sys/mman.h>
23#include <stdarg.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <signal.h>
28#include <string.h>
29#include <arpa/inet.h>
40b2b5a4 30#include <stdlib.h>
580d134b 31
deb6e540 32#define TRACEPOINT_DEFINE
580d134b 33#include "ust_tests_demo.h"
deb6e540
MD
34#include "ust_tests_demo2.h"
35#include "ust_tests_demo3.h"
580d134b
MD
36
37int main(int argc, char **argv)
38{
39 int i, netint;
40 long values[] = { 1, 2, 3 };
41 char text[10] = "test";
42 double dbl = 2.0;
43 float flt = 2222.0;
44 int delay = 0;
45
46 if (argc == 2)
47 delay = atoi(argv[1]);
48
49 fprintf(stderr, "Demo program starting.\n");
50
51 sleep(delay);
52
53 fprintf(stderr, "Tracing... ");
54 tracepoint(ust_tests_demo, starting, 123);
55 for (i = 0; i < 5; i++) {
56 netint = htonl(i);
deb6e540 57 tracepoint(ust_tests_demo2, loop, i, netint, values,
580d134b
MD
58 text, strlen(text), dbl, flt);
59 }
60 tracepoint(ust_tests_demo, done, 456);
deb6e540 61 tracepoint(ust_tests_demo3, done, 42);
580d134b
MD
62 fprintf(stderr, " done.\n");
63 return 0;
64}
This page took 0.025137 seconds and 4 git commands to generate.