X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=benchmark%2Fbench-sessions.c;h=440b26e787874ebbe92c06450d2afac8c3576647;hb=44749e83a5e86dfe35c87403133dccfab0937b66;hp=872b596b6d78888def181b0ae842699409778ce3;hpb=070ad9dac5af2e23fcd668cbdbcecff8fd0f01e1;p=lttng-tools.git diff --git a/benchmark/bench-sessions.c b/benchmark/bench-sessions.c index 872b596b6..440b26e78 100644 --- a/benchmark/bench-sessions.c +++ b/benchmark/bench-sessions.c @@ -25,7 +25,7 @@ #include #include -#include "ltt-sessiond/session.h" +#include #include "utils.h" #include "benchmark.h" @@ -65,6 +65,7 @@ int main(int argc, char **argv) int ret, i, nb_iter; char **names; double value, total = 0; + struct ltt_session *session; if (getuid() != 0) { printf("Aborting test. Must be uid 0 to drop_caches\n"); @@ -88,7 +89,7 @@ int main(int argc, char **argv) names[i] = get_random_string(); ret = system("echo 3 >/proc/sys/vm/drop_caches"); tracepoint(create_session_start); - ret = create_session(names[i], PATH1); + ret = session_create(names[i], PATH1, getuid(), getgid()); tracepoint(create_session_end); if (ret < 0) { printf("Create session went wrong. Aborting\n"); @@ -104,9 +105,10 @@ int main(int argc, char **argv) fprintf(fp, "--- Destroy tracing session ---\n"); for (i = 0; i < nb_iter; i++) { + session = session_find_by_name(names[i]); ret = system("echo 3 >/proc/sys/vm/drop_caches"); tracepoint(destroy_session_start); - ret = destroy_session(names[i]); + ret = session_destroy(session); tracepoint(destroy_session_end); if (ret < 0) { printf("Destroy session went wrong. Aborting\n");