X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=include%2Flttng%2Flog-level-rule-internal.h;h=ac0f74b71fff30ac7b743ad7f3197b08140d3e3a;hb=5c5e3d718d8248d5e075f64c34667c4c4617ae63;hp=f0ca63222cc7295b0d21d37aa207d3aad244d5a2;hpb=85b053182c4e300c717483ad231f5c04cbf5e4b7;p=lttng-tools.git diff --git a/include/lttng/log-level-rule-internal.h b/include/lttng/log-level-rule-internal.h index f0ca63222..ac0f74b71 100644 --- a/include/lttng/log-level-rule-internal.h +++ b/include/lttng/log-level-rule-internal.h @@ -17,6 +17,9 @@ #include #include #include +#include + +struct mi_writer; /* * For now only a single backing struct is used for both type of log level @@ -33,31 +36,29 @@ struct lttng_log_level_rule_comm { int32_t level; }; -LTTNG_HIDDEN ssize_t lttng_log_level_rule_create_from_payload( struct lttng_payload_view *view, struct lttng_log_level_rule **rule); -LTTNG_HIDDEN int lttng_log_level_rule_serialize(const struct lttng_log_level_rule *rule, struct lttng_payload *payload); -LTTNG_HIDDEN bool lttng_log_level_rule_is_equal(const struct lttng_log_level_rule *a, const struct lttng_log_level_rule *b); -LTTNG_HIDDEN struct lttng_log_level_rule *lttng_log_level_rule_copy( const struct lttng_log_level_rule *source); -LTTNG_HIDDEN void lttng_log_level_rule_to_loglevel( const struct lttng_log_level_rule *log_level_rule, enum lttng_loglevel_type *loglevel_type, int *loglevel_value); -LTTNG_HIDDEN unsigned long lttng_log_level_rule_hash( const struct lttng_log_level_rule *log_level_rule); +enum lttng_error_code lttng_log_level_rule_mi_serialize( + const struct lttng_log_level_rule *rule, + struct mi_writer *writer); + #endif /* LTTNG_LOG_LEVEL_RULE_INTERNAL_H */