X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fctf2-trace-class-visitor.cpp;h=b7ab303a17294198d89662bca7eb4f7b4affe454;hb=4bcf2294f0701b731d620c38216e1922e919e1b9;hp=f2f32c1686186b7e8dc7693e6605967ae3d385f1;hpb=c22ded1240ab0726421d43f0ccbcbc9a03ca2e59;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/ctf2-trace-class-visitor.cpp b/src/bin/lttng-sessiond/ctf2-trace-class-visitor.cpp index f2f32c168..b7ab303a1 100644 --- a/src/bin/lttng-sessiond/ctf2-trace-class-visitor.cpp +++ b/src/bin/lttng-sessiond/ctf2-trace-class-visitor.cpp @@ -390,7 +390,7 @@ void lsc::trace_class_visitor::visit(const lst::trace_class& trace_class) trace_class.accept(environment_visitor); trace_class_fragment["environment"] = environment_visitor.move_fragment(); - const auto packet_header = trace_class.get_packet_header(); + const auto packet_header = trace_class.packet_header(); if (packet_header) { ::ctf2::field_visitor field_visitor; @@ -432,7 +432,7 @@ void lsc::trace_class_visitor::visit(const lst::stream_class& stream_class) *stream_class.default_clock_class_name; } - const auto packet_context = stream_class.get_packet_context(); + const auto packet_context = stream_class.packet_context(); if (packet_context) { ::ctf2::field_visitor visitor; @@ -440,7 +440,7 @@ void lsc::trace_class_visitor::visit(const lst::stream_class& stream_class) stream_class_fragment["packet-context-field-class"] = visitor.move_fragment(); } - const auto event_header = stream_class.get_event_header(); + const auto event_header = stream_class.event_header(); if (event_header) { ::ctf2::field_visitor visitor; @@ -449,7 +449,7 @@ void lsc::trace_class_visitor::visit(const lst::stream_class& stream_class) visitor.move_fragment(); } - const auto event_context = stream_class.get_event_context(); + const auto event_context = stream_class.event_context(); if (event_context) { ::ctf2::field_visitor visitor;