Add enable channel support for UST
[lttng-tools.git] / ltt-sessiond / ust-comm.c
index 31c40070e92758b94779ef6b58e27f7b5ce39a23..455d40c0af68cedb941120b5759d05fb5e4e75be 100644 (file)
@@ -24,7 +24,7 @@
 
 /*
  * Send msg containing a command to an UST application via sock and wait for
- * the reply.
+ * the reply. Caller must free() the reply structure sent back.
  *
  * Return the replied structure or NULL.
  */
@@ -39,7 +39,7 @@ struct lttcomm_ust_reply *ustcomm_send_command(int sock,
                goto error;
        }
 
-       DBG("Sending UST command %d to sock %d", msg->cmd, sock);
+       DBG2("Sending UST command %d to sock %d", msg->cmd, sock);
 
        /* Send UST msg */
        len = lttcomm_send_unix_sock(sock, msg, sizeof(*msg));
@@ -53,7 +53,7 @@ struct lttcomm_ust_reply *ustcomm_send_command(int sock,
                goto error;
        }
 
-       DBG("Receiving UST reply on sock %d", sock);
+       DBG2("Receiving UST reply on sock %d", sock);
 
        /* Get UST reply */
        len = lttcomm_recv_unix_sock(sock, reply, sizeof(*reply));
This page took 0.022662 seconds and 4 git commands to generate.