Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl-helper.hpp
index 4b025a4e268d753543b7929e59c2dc15e63a1d9b..843462e9f4d91b4161cee7de3f5e61418995a011 100644 (file)
@@ -8,14 +8,14 @@
 #ifndef LTTNG_CTL_HELPER_H
 #define LTTNG_CTL_HELPER_H
 
-#include <stdio.h>
-
 #include <common/sessiond-comm/sessiond-comm.hpp>
+
 #include <lttng/lttng.h>
 
+#include <stdio.h>
+
 /* Copy helper functions. */
-void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst,
-               struct lttng_domain *src);
+void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst, struct lttng_domain *src);
 
 /*
  * Sends the lttcomm message to the session daemon and fills buf if the
@@ -25,10 +25,13 @@ void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst,
  * error code. If buf is NULL, 0 is returned on success.
  */
 int lttng_ctl_ask_sessiond_fds_varlen(struct lttcomm_session_msg *lsm,
-               const int *fds, size_t nb_fd,
-               const void *vardata, size_t vardata_len,
-               void **user_payload_buf, void **user_cmd_header_buf,
-               size_t *user_cmd_header_len);
+                                     const int *fds,
+                                     size_t nb_fd,
+                                     const void *vardata,
+                                     size_t vardata_len,
+                                     void **user_payload_buf,
+                                     void **user_cmd_header_buf,
+                                     size_t *user_cmd_header_len);
 
 /*
  * Sends the lttcomm message to the session daemon and fills the reply payload.
@@ -36,37 +39,34 @@ int lttng_ctl_ask_sessiond_fds_varlen(struct lttcomm_session_msg *lsm,
  * Return the size of the received data on success or else a negative lttng
  * error code.
  */
-int lttng_ctl_ask_sessiond_payload(struct lttng_payload_view *message,
-               struct lttng_payload *reply);
+int lttng_ctl_ask_sessiond_payload(struct lttng_payload_view *message, struct lttng_payload *reply);
 
 /*
  * Calls lttng_ctl_ask_sessiond_fds_varlen() with no expected command header.
  */
-static inline int lttng_ctl_ask_sessiond_varlen_no_cmd_header(
-               struct lttcomm_session_msg *lsm,
-               const void *vardata,
-               size_t vardata_len,
-               void **user_payload_buf)
+static inline int lttng_ctl_ask_sessiond_varlen_no_cmd_header(struct lttcomm_session_msg *lsm,
+                                                             const void *vardata,
+                                                             size_t vardata_len,
+                                                             void **user_payload_buf)
 {
-       return lttng_ctl_ask_sessiond_fds_varlen(lsm, NULL, 0, vardata,
-               vardata_len, user_payload_buf, NULL, NULL);
+       return lttng_ctl_ask_sessiond_fds_varlen(
+               lsm, NULL, 0, vardata, vardata_len, user_payload_buf, NULL, NULL);
 }
 
 /*
  * Calls lttng_ctl_ask_sessiond_fds_varlen() with fds and no expected command header.
  */
-static inline
-int lttng_ctl_ask_sessiond_fds_no_cmd_header(struct lttcomm_session_msg *lsm,
-               const int *fds, size_t nb_fd, void **buf __attribute__((unused)))
+static inline int lttng_ctl_ask_sessiond_fds_no_cmd_header(struct lttcomm_session_msg *lsm,
+                                                          const int *fds,
+                                                          size_t nb_fd,
+                                                          void **buf __attribute__((unused)))
 {
-       return lttng_ctl_ask_sessiond_fds_varlen(lsm, fds, nb_fd, NULL,
-               0, NULL, NULL, NULL);
+       return lttng_ctl_ask_sessiond_fds_varlen(lsm, fds, nb_fd, NULL, 0, NULL, NULL, NULL);
 }
 /*
  * Use this if no variable length data needs to be sent.
  */
-static inline
-int lttng_ctl_ask_sessiond(struct lttcomm_session_msg *lsm, void **buf)
+static inline int lttng_ctl_ask_sessiond(struct lttcomm_session_msg *lsm, void **buf)
 {
        return lttng_ctl_ask_sessiond_varlen_no_cmd_header(lsm, NULL, 0, buf);
 }
This page took 0.023929 seconds and 4 git commands to generate.