Use the dynamic buffer to serialize notification objects
[lttng-tools.git] / include / lttng / condition / evaluation-internal.h
index e2b6c38489386ee00ceba2c66c111f3b306814e9..95119b37e97ea6bdab84d2814d6a42baa9653a5d 100644 (file)
 #include <lttng/condition/evaluation.h>
 #include <common/macros.h>
 #include <common/buffer-view.h>
+#include <common/dynamic-buffer.h>
 #include <stdbool.h>
 #include <sys/types.h>
 
 typedef void (*evaluation_destroy_cb)(struct lttng_evaluation *evaluation);
-typedef ssize_t (*evaluation_serialize_cb)(struct lttng_evaluation *evaluation,
-               char *buf);
+typedef int (*evaluation_serialize_cb)(struct lttng_evaluation *evaluation,
+               struct lttng_dynamic_buffer *buf);
 
 struct lttng_evaluation_comm {
        /* enum lttng_condition_type type */
@@ -45,7 +46,7 @@ ssize_t lttng_evaluation_create_from_buffer(const struct lttng_buffer_view *view
                struct lttng_evaluation **evaluation);
 
 LTTNG_HIDDEN
-ssize_t lttng_evaluation_serialize(struct lttng_evaluation *evaluation,
-               char *buf);
+int lttng_evaluation_serialize(struct lttng_evaluation *evaluation,
+               struct lttng_dynamic_buffer *buf);
 
 #endif /* LTTNG_EVALUATION_INTERNAL_H */
This page took 0.024097 seconds and 5 git commands to generate.