Fix dynamic linking with GNU gold linker
[lttng-ust.git] / tests / hello / hello.c
CommitLineData
81614639
MD
1/*
2 * Copyright (C) 2009 Pierre-Marc Fournier
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
a09dac63
PMF
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
8d8a24c8
MD
7 * License as published by the Free Software Foundation; version 2.1 of
8 * the License.
a09dac63
PMF
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
68c1021b
PMF
20#include <stdio.h>
21#include <unistd.h>
b6bf28ec 22#include <sys/mman.h>
9c67dc50
PMF
23#include <stdarg.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
4486e566 27#include <signal.h>
5dba5937 28#include <string.h>
9a396c3c 29#include <arpa/inet.h>
40b2b5a4 30#include <stdlib.h>
68c1021b 31
deb6e540 32#define TRACEPOINT_DEFINE
41aaf8a5 33#include "ust_tests_hello.h"
59b161cd 34
8d938dbd
PMF
35void inthandler(int sig)
36{
8d8a24c8 37 printf("in SIGUSR1 handler\n");
7083f0fe 38 tracepoint(ust_tests_hello, tptest_sighandler);
8d938dbd
PMF
39}
40
41int init_int_handler(void)
42{
43 int result;
44 struct sigaction act;
45
1ea11eab 46 memset(&act, 0, sizeof(act));
8d938dbd 47 result = sigemptyset(&act.sa_mask);
81614639 48 if (result == -1) {
41aaf8a5 49 perror("sigemptyset");
8d938dbd
PMF
50 return -1;
51 }
52
53 act.sa_handler = inthandler;
54 act.sa_flags = SA_RESTART;
55
56 /* Only defer ourselves. Also, try to restart interrupted
57 * syscalls to disturb the traced program as little as possible.
58 */
8d8a24c8 59 result = sigaction(SIGUSR1, &act, NULL);
81614639 60 if (result == -1) {
41aaf8a5 61 perror("sigaction");
8d938dbd
PMF
62 return -1;
63 }
64
65 return 0;
66}
67
8d8a24c8 68int main(int argc, char **argv)
b6bf28ec 69{
9a396c3c 70 int i, netint;
775e7fd8 71 long values[] = { 1, 2, 3 };
5dba5937 72 char text[10] = "test";
513fc97e
MD
73 double dbl = 2.0;
74 float flt = 2222.0;
ff927bae 75 int delay = 0;
5f54827b 76
8d938dbd
PMF
77 init_int_handler();
78
ff927bae
MD
79 if (argc == 2)
80 delay = atoi(argv[1]);
59b161cd 81
ff927bae 82 fprintf(stderr, "Hello, World!\n");
8d8a24c8 83
ff927bae
MD
84 sleep(delay);
85
86 fprintf(stderr, "Tracing... ");
c95f3a3a 87 for (i = 0; i < 1000000; i++) {
9a396c3c 88 netint = htonl(i);
7083f0fe 89 tracepoint(ust_tests_hello, tptest, i, netint, values,
513fc97e 90 text, strlen(text), dbl, flt);
c95f3a3a 91 //usleep(100000);
8d938dbd 92 }
ff927bae 93 fprintf(stderr, " done.\n");
68c1021b
PMF
94 return 0;
95}
This page took 0.031671 seconds and 4 git commands to generate.