eb1e4714892c6bf9ada911856472e82807f05cb4
[lttng-ust.git] / tests / compile / hello-many / hello-many.c
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 <stdlib.h>
30
31 #define TRACEPOINT_DEFINE
32 #include "ust_tests_hello_many.h"
33
34 int main(int argc, char **argv)
35 {
36 int delay = 0;
37
38 if (argc == 2)
39 delay = atoi(argv[1]);
40
41 fprintf(stderr, "Hello, World!\n");
42
43 sleep(delay);
44
45 fprintf(stderr, "Tracing... ");
46 tracepoint(ust_tests_hello_many, tptest_simple1);
47 tracepoint(ust_tests_hello_many, tptest_simple34);
48 fprintf(stderr, " done.\n");
49 return 0;
50 }
This page took 0.029137 seconds and 3 git commands to generate.