2 * Copyright (C) 2009 Pierre-Marc Fournier
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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
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.
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
24 #include <sys/types.h>
29 #include <arpa/inet.h>
32 #define TRACEPOINT_DEFINE
34 #if TEST_DYNAMIC_LINKAGE
35 #define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
38 #include "ust_tests_demo.h"
39 #include "ust_tests_demo2.h"
40 #include "ust_tests_demo3.h"
42 int main(int argc
, char **argv
)
45 long values
[] = { 1, 2, 3 };
46 char text
[10] = "test";
52 delay
= atoi(argv
[1]);
54 fprintf(stderr
, "Demo program starting.\n");
58 fprintf(stderr
, "Tracing... ");
59 tracepoint(ust_tests_demo
, starting
, 123);
60 for (i
= 0; i
< 5; i
++) {
62 tracepoint(ust_tests_demo2
, loop
, i
, netint
, values
,
63 text
, strlen(text
), dbl
, flt
);
65 tracepoint(ust_tests_demo
, done
, 456);
66 tracepoint(ust_tests_demo3
, done
, 42);
67 fprintf(stderr
, " done.\n");
This page took 0.029726 seconds and 4 git commands to generate.