Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / bin / lttng-sessiond / channel.hpp
index 342e30f78a472e75113103527b7789b68885551f..f7156c6324574fc1dfe1a6e4a908cf5d3d9b60ff 100644 (file)
@@ -8,31 +8,28 @@
 #ifndef _LTT_CHANNEL_H
 #define _LTT_CHANNEL_H
 
-#include <lttng/lttng.h>
-
 #include "trace-kernel.hpp"
 #include "trace-ust.hpp"
 
-int channel_kernel_disable(struct ltt_kernel_session *ksession,
-               char *channel_name);
+#include <lttng/lttng.h>
+
+int channel_kernel_disable(struct ltt_kernel_session *ksession, char *channel_name);
 enum lttng_error_code channel_kernel_enable(struct ltt_kernel_session *ksession,
-               struct ltt_kernel_channel *kchan);
+                                           struct ltt_kernel_channel *kchan);
 enum lttng_error_code channel_kernel_create(struct ltt_kernel_session *ksession,
-               struct lttng_channel *chan,
-               int kernel_pipe);
+                                           struct lttng_channel *chan,
+                                           int kernel_pipe);
 
-struct lttng_channel *channel_new_default_attr(int domain,
-               enum lttng_buffer_type type);
+struct lttng_channel *channel_new_default_attr(int domain, enum lttng_buffer_type type);
 void channel_attr_destroy(struct lttng_channel *channel);
 
 enum lttng_error_code channel_ust_create(struct ltt_ust_session *usess,
-               struct lttng_channel *attr, enum lttng_buffer_type type);
+                                        struct lttng_channel *attr,
+                                        enum lttng_buffer_type type);
 enum lttng_error_code channel_ust_enable(struct ltt_ust_session *usess,
-               struct ltt_ust_channel *uchan);
-int channel_ust_disable(struct ltt_ust_session *usess,
-               struct ltt_ust_channel *uchan);
+                                        struct ltt_ust_channel *uchan);
+int channel_ust_disable(struct ltt_ust_session *usess, struct ltt_ust_channel *uchan);
 
-struct lttng_channel *trace_ust_channel_to_lttng_channel(
-               const struct ltt_ust_channel *uchan);
+struct lttng_channel *trace_ust_channel_to_lttng_channel(const struct ltt_ust_channel *uchan);
 
 #endif /* _LTT_CHANNEL_H */
This page took 0.0232 seconds and 4 git commands to generate.