X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=benchmark%2Fbench-sessions.c;h=83c79c4fd68c4562a313f732691fd7ec8ff3c14e;hb=85acc98407ee1af549652ab39a1eba393f114b76;hp=609500828f89113b120d7aeba1817be5e66a7c8b;hpb=4c13f73f92c1cfdab179575450228f482a02135e;p=lttng-tools.git diff --git a/benchmark/bench-sessions.c b/benchmark/bench-sessions.c index 609500828..83c79c4fd 100644 --- a/benchmark/bench-sessions.c +++ b/benchmark/bench-sessions.c @@ -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"); @@ -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 = session_destroy(names[i]); + ret = session_destroy(session); tracepoint(destroy_session_end); if (ret < 0) { printf("Destroy session went wrong. Aborting\n");