X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=09a35b98aba42bb54885ce6be4c08672428f31a8;hb=686debc34cf055ffcb1f98a06df9fbaf27eeb441;hp=8147860a9c9f36716b60e6249f15564802d0fd10;hpb=a5f09c2c8efcc5fc047178bef0acb73552cdf390;p=ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 8147860..09a35b9 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -25,8 +25,8 @@ #include #include +#include #include "usterr.h" -#include "tracer.h" #include "tp.h" void inthandler(int sig) @@ -71,19 +71,21 @@ int main() sleep(1); for(i=0; i<50; i++) { - trace_mark(ust, bar, "str %s", "FOOBAZ"); - trace_mark(ust, bar2, "number1 %d number2 %d", 53, 9800); + ust_marker(bar, "str %s", "FOOBAZ"); + ust_marker(bar2, "number1 %d number2 %d", 53, 9800); trace_hello_tptest(i); usleep(100000); } - scanf("%*s"); + if (scanf("%*s") == EOF) + PERROR("scanf failed"); - ltt_trace_stop("auto"); - ltt_trace_destroy("auto", 0); + ustctl_stop_trace(getpid(), "auto"); + ustctl_destroy_trace(getpid(), "auto"); DBG("TRACE STOPPED"); - scanf("%*s"); + if (scanf("%*s") == EOF) + PERROR("scanf failed"); return 0; }