X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=661ed40862dcb3ea5811a8d455703ad042f40566;hb=9a396c3c901b720374bebc79d1bb9ab8f234ba38;hp=03d07b675e8e99107ec12c78bd6a5de1f4ef9815;hpb=fc82992469839f5de54a868cf8124752d57ce3ee;p=ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 03d07b6..661ed40 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "ust_tests_hello.h" @@ -64,7 +65,7 @@ int init_int_handler(void) int main(int argc, char **argv) { - int i; + int i, netint; long values[] = { 1, 2, 3 }; char text[10] = "test"; double dbl = 2.0; @@ -78,7 +79,8 @@ int main(int argc, char **argv) //for (i = 0; i < 50; i++) { for (i = 0; i < 1000000; i++) { - tracepoint(ust_tests_hello_tptest, i, values, + netint = htonl(i); + tracepoint(ust_tests_hello_tptest, i, netint, values, text, strlen(text), dbl, flt); //usleep(100000); }