X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fdlopen%2Fdlopen.c;fp=tests%2Fdlopen%2Fdlopen.c;h=ae209028ac059f0fc3c886cd5c6094372eab79ae;hb=686debc34cf055ffcb1f98a06df9fbaf27eeb441;hp=d367580c3698cf86641cb2e7399def4d542837f6;hpb=b64d025089c6d40963e029cff23efed4ed1f2f22;p=ust.git diff --git a/tests/dlopen/dlopen.c b/tests/dlopen/dlopen.c index d367580..ae20902 100644 --- a/tests/dlopen/dlopen.c +++ b/tests/dlopen/dlopen.c @@ -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;