X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf-writer%2Fevent-types.h;h=176fbb42eeef92baa50870a8fbfa41b8881166bb;hb=e1e02a22957d83adc526c016d5d3b978b8e6d26d;hp=6e0295f60cce80c1f796106d074b66c667354e79;hpb=50d2011c37045e3f34c1b5877205bda4b7e3381a;p=babeltrace.git diff --git a/include/babeltrace/ctf-writer/event-types.h b/include/babeltrace/ctf-writer/event-types.h index 6e0295f6..176fbb42 100644 --- a/include/babeltrace/ctf-writer/event-types.h +++ b/include/babeltrace/ctf-writer/event-types.h @@ -28,7 +28,7 @@ * http://www.efficios.com/ctf */ -#include +#include #include #ifdef __cplusplus @@ -39,7 +39,7 @@ extern "C" { * bt_ctf_field_type_get and bt_ctf_field_type_put: increment and decrement * the field type's reference count. * - * You may also use bt_object_get_ref() and bt_object_put_ref() with field type objects. + * You may also use bt_ctf_object_get_ref() and bt_ctf_object_put_ref() with field type objects. * * These functions ensure that the field type won't be destroyed while it * is in use. The same number of get and put (plus one extra put to @@ -56,14 +56,14 @@ extern "C" { static inline void bt_ctf_field_type_get(struct bt_ctf_field_type *type) { - bt_object_get_ref(type); + bt_ctf_object_get_ref(type); } /* Pre-2.0 CTF writer compatibility */ static inline void bt_ctf_field_type_put(struct bt_ctf_field_type *type) { - bt_object_put_ref(type); + bt_ctf_object_put_ref(type); } #ifdef __cplusplus