bin: compile lttng-sessiond as C++
[lttng-tools.git] / include / lttng / action / list-internal.h
index 9e88422cafce47ae6918dc957ab85ca59f195082..3d7a5ba60f03d9b604a726347a1500259f0b166d 100644 (file)
 
 #include <common/macros.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct lttng_action;
 struct lttng_payload_view;
+struct mi_writer;
+struct mi_lttng_error_query_callbacks;
+struct lttng_dynamic_array;
+struct lttng_trigger;
 
 /*
  * Create an action list from a payload view.
  *
  * On success, return the number of bytes consumed from `view`, and the created
- * group in `*group`. On failure, return -1.
+ * list in `*list`. On failure, return -1.
  */
-LTTNG_HIDDEN
 extern ssize_t lttng_action_list_create_from_payload(
                struct lttng_payload_view *view,
-               struct lttng_action **group);
+               struct lttng_action **list);
 
-LTTNG_HIDDEN
 extern struct lttng_action *lttng_action_list_borrow_mutable_at_index(
-               const struct lttng_action *group, unsigned int index);
+               const struct lttng_action *list, unsigned int index);
+
+enum lttng_error_code lttng_action_list_mi_serialize(const struct lttng_trigger *trigger,
+               const struct lttng_action *action,
+               struct mi_writer *writer,
+               const struct mi_lttng_error_query_callbacks
+                               *error_query_callbacks,
+               struct lttng_dynamic_array *action_path_indexes);
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* LTTNG_ACTION_LIST_INTERNAL_H */
This page took 0.02478 seconds and 4 git commands to generate.