X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=ltt-sessiond%2Fust-ctl.c;h=abee38817135392c93b55fb97a78d54936f0545a;hp=2ec168e939b7e24a70838958d4c0b1abb039ba2c;hb=773168b7255d45fd28f018055292e93b7a76482d;hpb=9e78d6ae219789dee9c96f35f190d6166ef389c3 diff --git a/ltt-sessiond/ust-ctl.c b/ltt-sessiond/ust-ctl.c index 2ec168e93..abee38817 100644 --- a/ltt-sessiond/ust-ctl.c +++ b/ltt-sessiond/ust-ctl.c @@ -3,8 +3,8 @@ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * as published by the Free Software Foundation; only version 2 + * of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,12 +23,11 @@ #include #include -#include - -#include "liblttsessiondcomm.h" +#include #include "lttngerr.h" #include "ust-ctl.h" +#ifdef DISABLED /* * find_session_ust_trace_by_pid * @@ -58,7 +57,7 @@ static struct ltt_ust_trace *find_session_ust_trace_by_pid( */ int get_trace_count_per_session(struct ltt_session *session) { - return session->ust_trace_count + session->kern_session_count; + return session->ust_trace_count; } /* @@ -67,6 +66,7 @@ int get_trace_count_per_session(struct ltt_session *session) * Fill the lttng_trace array of all the * available trace of the session. */ +/* void get_traces_per_session(struct ltt_session *session, struct lttng_trace *traces) { int i = 0; @@ -75,7 +75,6 @@ void get_traces_per_session(struct ltt_session *session, struct lttng_trace *tra DBG("Getting userspace traces for session %s", session->name); - /* Getting userspace traces */ cds_list_for_each_entry(ust_iter, &session->ust_traces, list) { trace.type = USERSPACE; trace.pid = ust_iter->pid; @@ -88,13 +87,13 @@ void get_traces_per_session(struct ltt_session *session, struct lttng_trace *tra DBG("Getting kernel traces for session %s", session->name); - /* Getting kernel traces */ if (session->kern_session_count > 0) { trace.type = KERNEL; strncpy(trace.name, "kernel", 6); memcpy(&traces[i], &trace, sizeof(trace)); } } +*/ /* * ust_create_trace @@ -207,4 +206,5 @@ int ust_stop_trace(struct command_ctx *cmd_ctx) error: return ret; } +#endif