Require C++11 for building probe providers with C++ compiler
[lttng-ust.git] / tests / hello / hello.c
index da33407b0db671aeb3e37bf5c332af4b074c543a..058f7fae10abaa2c7c5a957c1bdc80fe40f8f8f1 100644 (file)
 #include <fcntl.h>
 #include <signal.h>
 #include <string.h>
+/*
+ * Work-around inet.h missing struct mmsghdr forward declaration, with
+ * triggers a warning when system files warnings are enabled.
+ */
+struct mmsghdr;
 #include <arpa/inet.h>
+#include <stdlib.h>
+#include <stdbool.h>
 
 #define TRACEPOINT_DEFINE
 #include "ust_tests_hello.h"
@@ -64,6 +71,8 @@ int init_int_handler(void)
        return 0;
 }
 
+void test_inc_count(void);
+
 int main(int argc, char **argv)
 {
        int i, netint;
@@ -72,6 +81,7 @@ int main(int argc, char **argv)
        double dbl = 2.0;
        float flt = 2222.0;
        int delay = 0;
+       bool mybool = 123;      /* should print "1" */
 
        init_int_handler();
 
@@ -86,7 +96,7 @@ int main(int argc, char **argv)
        for (i = 0; i < 1000000; i++) {
                netint = htonl(i);
                tracepoint(ust_tests_hello, tptest, i, netint, values,
-                          text, strlen(text), dbl, flt);
+                          text, strlen(text), dbl, flt, mybool);
                //usleep(100000);
        }
        fprintf(stderr, " done.\n");
This page took 0.023178 seconds and 4 git commands to generate.