Cleanup: Bump autoconf required version to 2.69
[deliverable/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>
3e4e9902
MD
29/*
30 * Work-around inet.h missing struct mmsghdr forward declaration, with
31 * triggers a warning when system files warnings are enabled.
32 */
33struct mmsghdr;
9a396c3c 34#include <arpa/inet.h>
40b2b5a4 35#include <stdlib.h>
f121009f 36#include <stdbool.h>
68c1021b 37
deb6e540 38#define TRACEPOINT_DEFINE
41aaf8a5 39#include "ust_tests_hello.h"
59b161cd 40
8d938dbd
PMF
41void inthandler(int sig)
42{
8d8a24c8 43 printf("in SIGUSR1 handler\n");
7083f0fe 44 tracepoint(ust_tests_hello, tptest_sighandler);
8d938dbd
PMF
45}
46
47int init_int_handler(void)
48{
49 int result;
50 struct sigaction act;
51
1ea11eab 52 memset(&act, 0, sizeof(act));
8d938dbd 53 result = sigemptyset(&act.sa_mask);
81614639 54 if (result == -1) {
41aaf8a5 55 perror("sigemptyset");
8d938dbd
PMF
56 return -1;
57 }
58
59 act.sa_handler = inthandler;
60 act.sa_flags = SA_RESTART;
61
62 /* Only defer ourselves. Also, try to restart interrupted
63 * syscalls to disturb the traced program as little as possible.
64 */
8d8a24c8 65 result = sigaction(SIGUSR1, &act, NULL);
81614639 66 if (result == -1) {
41aaf8a5 67 perror("sigaction");
8d938dbd
PMF
68 return -1;
69 }
70
71 return 0;
72}
73
53569322
MD
74void test_inc_count(void);
75
8d8a24c8 76int main(int argc, char **argv)
b6bf28ec 77{
9a396c3c 78 int i, netint;
775e7fd8 79 long values[] = { 1, 2, 3 };
5dba5937 80 char text[10] = "test";
513fc97e
MD
81 double dbl = 2.0;
82 float flt = 2222.0;
ff927bae 83 int delay = 0;
f121009f 84 bool mybool = 123; /* should print "1" */
5f54827b 85
8d938dbd
PMF
86 init_int_handler();
87
ff927bae
MD
88 if (argc == 2)
89 delay = atoi(argv[1]);
59b161cd 90
ff927bae 91 fprintf(stderr, "Hello, World!\n");
8d8a24c8 92
ff927bae
MD
93 sleep(delay);
94
95 fprintf(stderr, "Tracing... ");
c95f3a3a 96 for (i = 0; i < 1000000; i++) {
9a396c3c 97 netint = htonl(i);
7083f0fe 98 tracepoint(ust_tests_hello, tptest, i, netint, values,
f121009f 99 text, strlen(text), dbl, flt, mybool);
c95f3a3a 100 //usleep(100000);
8d938dbd 101 }
ff927bae 102 fprintf(stderr, " done.\n");
68c1021b
PMF
103 return 0;
104}
This page took 0.04779 seconds and 5 git commands to generate.