X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=a786fbf89fa90d3cbea1109824b6a3aebf92adff;hb=cc7b66ba103c213a84159c2128cd4096507bdd2b;hp=7eecf69e83f0bbaf23949a71e191806bf884687a;hpb=08b8805efffcad4e0f713272cac6f75390176396;p=ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 7eecf69..a786fbf 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,17 +71,17 @@ 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); - trace_hello_tptest(i); + ust_marker(bar, "str %s", "FOOBAZ"); + ust_marker(bar2, "number1 %d number2 %d", 53, 9800); + tracepoint(hello_tptest, i); usleep(100000); } 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"); if (scanf("%*s") == EOF)