X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=tests%2Fhello%2Fhello.c;h=68c137ee304d043489c673713e1f2ab98d80cd58;hb=abac44cda88a3b83c2bf98c6bab16ed6a1cc1af1;hp=584d3f7b9f1b107d2d8a4986164127c6c2c45863;hpb=40b2b5a43e4c2067849770b3379ca5360facacd5;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 584d3f7b..68c137ee 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -26,8 +26,14 @@ #include #include #include +/* + * Work-around inet.h missing struct mmsghdr forward declaration, with + * triggers a warning when system files warnings are enabled. + */ +struct mmsghdr; #include #include +#include #define TRACEPOINT_DEFINE #include "ust_tests_hello.h" @@ -73,6 +79,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(); @@ -87,7 +94,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");