From: David Goulet Date: Tue, 4 Oct 2011 14:43:37 +0000 (-0400) Subject: Fix new session destroy function call X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=8f11f9f6903dd865f4394caa0ff625d1bb64e093;p=lttng-tools.git Fix new session destroy function call Signed-off-by: David Goulet --- 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");