X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=0c18c01a95a8e8ed9adad55b21c661c92a1c937e;hb=bbd25c0d89f11ccb7c963b1b6186c4c083f8ecba;hp=68fca7a721ef06dfb0fe9960edfe177d25cb2803;hpb=ff927baefe5c1e382cd4779219ad985a03eb5a6c;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 68fca7a7..0c18c01a 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -27,7 +27,10 @@ #include #include #include +#include +#include +#define TRACEPOINT_DEFINE #include "ust_tests_hello.h" void inthandler(int sig) @@ -71,6 +74,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(); @@ -85,7 +89,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");