Markers: API change: rename trace_mark() to ust_marker()
[ust.git] / tests / dlopen / dlopen.c
index d367580c3698cf86641cb2e7399def4d542837f6..ae209028ac059f0fc3c886cd5c6094372eab79ae 100644 (file)
@@ -28,7 +28,7 @@ int main()
 {
        int (*fptr)();
 
-       trace_mark(from_main_before_lib, "%s", "Event occured in the main program before"
+       ust_marker(from_main_before_lib, "%s", "Event occured in the main program before"
                                                " the opening of the library\n");
        void *lib_handle = dlopen("libdummy.so", RTLD_LAZY);
 
@@ -47,7 +47,7 @@ int main()
        (*fptr)();
        dlclose(lib_handle);
 
-       trace_mark(from_main_after_lib,"%s", "Event occured in the main program after "
+       ust_marker(from_main_after_lib,"%s", "Event occured in the main program after "
                                                "the library has been closed\n");
 
        return 0;
This page took 0.0226 seconds and 4 git commands to generate.