X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Ftrace-ir%2Ffield-classes-internal.h;h=94056c3eb75dee54ed6c6f6a92e61cc75bb1f1bb;hp=b0860cd169ae3e57535d116edeedff223d8188b4;hb=862ca4ed7b3a8ef14f69529d252bccc48a33108a;hpb=0d72b8c329ad51d14ab4e83330b38c2c8da69dd4 diff --git a/include/babeltrace/trace-ir/field-classes-internal.h b/include/babeltrace/trace-ir/field-classes-internal.h index b0860cd1..94056c3e 100644 --- a/include/babeltrace/trace-ir/field-classes-internal.h +++ b/include/babeltrace/trace-ir/field-classes-internal.h @@ -91,9 +91,9 @@ struct bt_field_class { /* * Only used in developer mode, this flag indicates whether or - * not this field class is part of a trace. + * not this field class is part of a trace class. */ - bool part_of_trace; + bool part_of_trace_class; }; struct bt_field_class_integer { @@ -242,12 +242,13 @@ void _bt_field_class_freeze(const struct bt_field_class *field_class); * shared objects for other purposes. */ BT_HIDDEN -void _bt_field_class_make_part_of_trace(const struct bt_field_class *field_class); +void _bt_field_class_make_part_of_trace_class( + const struct bt_field_class *field_class); #ifdef BT_DEV_MODE -# define bt_field_class_make_part_of_trace _bt_field_class_make_part_of_trace +# define bt_field_class_make_part_of_trace_class _bt_field_class_make_part_of_trace_class #else -# define bt_field_class_make_part_of_trace(_fc) ((void) _fc) +# define bt_field_class_make_part_of_trace_class(_fc) ((void) _fc) #endif #endif /* BABELTRACE_TRACE_IR_FIELD_CLASSES_INTERNAL_H */