text output plugin: print time delta
[babeltrace.git] / plugins / text / text.h
index 103dc07977d5be48e89d9a0f7b9494c973cd0c9e..5697e2ee5e974c3c7a98d56dffcb4bd3acd09325 100644 (file)
@@ -53,7 +53,6 @@ struct text_options {
        bool print_delta_field;
        bool print_loglevel_field;
        bool print_emf_field;
-       bool print_callsite_field;
        bool print_trace_field;
        bool print_trace_domain_field;
        bool print_trace_procname_field;
@@ -71,11 +70,16 @@ struct text_component {
        struct text_options options;
        FILE *out, *err;
        bool processed_first_event;
-       uint64_t last_real_timestamp;
        int depth;      /* nesting, used for tabulation alignment. */
        bool start_line;
        GString *string;
        struct bt_value *plugin_opt_map;        /* Temporary parameter map. */
+
+       uint64_t last_cycles_timestamp;
+       uint64_t delta_cycles;
+
+       uint64_t last_real_timestamp;
+       uint64_t delta_real_timestamp;
 };
 
 BT_HIDDEN
This page took 0.023198 seconds and 4 git commands to generate.