X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fcpp-common%2Fbt2%2Ftrace-ir.hpp;fp=src%2Fcpp-common%2Fbt2%2Ftrace-ir.hpp;h=3c8637cf5df0acfe1e4d956fa4cfd84cf6b13794;hp=dd79fc44e2a4d73db75d74da1452d2cc4a6d1d7e;hb=e1f49fd06b3b55ba81d5df0adddd18781b0940e6;hpb=46c7e45bc65331d6b43ffc44c7c30265d0a03480 diff --git a/src/cpp-common/bt2/trace-ir.hpp b/src/cpp-common/bt2/trace-ir.hpp index dd79fc44..3c8637cf 100644 --- a/src/cpp-common/bt2/trace-ir.hpp +++ b/src/cpp-common/bt2/trace-ir.hpp @@ -1151,7 +1151,7 @@ public: static_assert(!std::is_const::value, "`LibObjT` must NOT be `const`."); const auto status = - bt_event_class_set_specificContext_field_class(this->_libObjPtr(), fc._libObjPtr()); + bt_event_class_set_specific_context_field_class(this->_libObjPtr(), fc._libObjPtr()); if (status == BT_EVENT_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) { throw LibMemoryError {}; @@ -1620,7 +1620,7 @@ public: static_assert(!std::is_const::value, "`LibObjT` must NOT be `const`."); const auto status = - bt_stream_class_set_payload_field_class(this->_libObjPtr(), fc._libObjPtr()); + bt_stream_class_set_packet_context_field_class(this->_libObjPtr(), fc._libObjPtr()); if (status == BT_EVENT_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) { throw LibMemoryError {}; @@ -1653,8 +1653,8 @@ public: { static_assert(!std::is_const::value, "`LibObjT` must NOT be `const`."); - const auto status = - bt_stream_class_set_specificContext_field_class(this->_libObjPtr(), fc._libObjPtr()); + const auto status = bt_stream_class_set_event_common_context_field_class(this->_libObjPtr(), + fc._libObjPtr()); if (status == BT_EVENT_CLASS_SET_FIELD_CLASS_STATUS_MEMORY_ERROR) { throw LibMemoryError {};