Fix test: packet seq num has too large offset_s
[babeltrace.git] / plugins / text / pretty / pretty.h
index 9caa5778ea8f487673d4bdb1a0bb9d6c905ab6b2..272e06cff3a05f19784e5e1b81150cb5df2fb7b8 100644 (file)
@@ -48,8 +48,6 @@ enum pretty_color_option {
 
 struct pretty_options {
        char *output_path;
-       char *debug_info_dir;
-       char *debug_info_target_prefix;
 
        enum pretty_default name_default;
        enum pretty_default field_default;
@@ -73,7 +71,6 @@ struct pretty_options {
        bool clock_seconds;
        bool clock_date;
        bool clock_gmt;
-       bool debug_info_full_path;
        enum pretty_color_option color;
        bool verbose;
 };
@@ -82,10 +79,10 @@ struct pretty_component {
        struct pretty_options options;
        struct bt_notification_iterator *input_iterator;
        FILE *out, *err;
-       bool processed_first_event; /* Should be per-iterator. */
        int depth;      /* nesting, used for tabulation alignment. */
        bool start_line;
        GString *string;
+       GString *tmp_string;
        struct bt_value *plugin_opt_map;        /* Temporary parameter map. */
        bool use_colors;
        bool error;
@@ -129,6 +126,11 @@ void pretty_finalize(struct bt_private_component *component);
 
 BT_HIDDEN
 enum bt_component_status pretty_print_event(struct pretty_component *pretty,
-               struct bt_ctf_event *event);
+               struct bt_notification *event_notif);
+
+BT_HIDDEN
+enum bt_component_status pretty_print_discarded_elements(
+               struct pretty_component *pretty,
+               struct bt_notification *notif);
 
 #endif /* BABELTRACE_PLUGIN_TEXT_PRETTY_PRETTY_H */
This page took 0.026589 seconds and 4 git commands to generate.