Markers: remove channel name from trace_mark()
[ust.git] / tests / hello / hello.c
index 7eecf69e83f0bbaf23949a71e191806bf884687a..6ba2e61e06963f2ea1478147569725263e2f3cc9 100644 (file)
@@ -25,8 +25,8 @@
 #include <signal.h>
 
 #include <ust/marker.h>
+#include <ust/ustctl.h>
 #include "usterr.h"
-#include "tracer.h"
 #include "tp.h"
 
 void inthandler(int sig)
@@ -71,8 +71,8 @@ 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_mark(bar, "str %s", "FOOBAZ");
+               trace_mark(bar2, "number1 %d number2 %d", 53, 9800);
                trace_hello_tptest(i);
                usleep(100000);
        }
@@ -80,8 +80,8 @@ int main()
        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)
This page took 0.022702 seconds and 4 git commands to generate.