X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf-ir%2Fstream-class-internal.h;h=1bd1ea18c26bfb63c9711c38fa95aefaa5ea8208;hb=f79cf0f0781f10167a01c9d8b925fd116d184c83;hp=4338742e7688e21a20210236ca1fe287549a87b2;hpb=de3dd40e6fcad56e227f5fc8a8290fbaa88b4e07;p=babeltrace.git diff --git a/include/babeltrace/ctf-ir/stream-class-internal.h b/include/babeltrace/ctf-ir/stream-class-internal.h index 4338742e..1bd1ea18 100644 --- a/include/babeltrace/ctf-ir/stream-class-internal.h +++ b/include/babeltrace/ctf-ir/stream-class-internal.h @@ -31,13 +31,14 @@ #include #include #include -#include +#include #include #include +#include #include struct bt_ctf_stream_class { - struct bt_ctf_base base; + struct bt_object base; GString *name; struct bt_ctf_clock *clock; GPtrArray *event_classes; /* Array of pointers to bt_ctf_event_class */ @@ -45,13 +46,17 @@ struct bt_ctf_stream_class { uint32_t id; uint32_t next_event_id; uint32_t next_stream_id; - /* Weak reference; a stream class does not have ownership of a trace */ - struct bt_ctf_trace *trace; struct bt_ctf_field_type *packet_context_type; struct bt_ctf_field_type *event_header_type; struct bt_ctf_field_type *event_context_type; int frozen; int byte_order; + + /* + * This flag indicates if the stream class is valid. A valid + * stream class is _always_ frozen. + */ + int valid; }; BT_HIDDEN @@ -62,8 +67,8 @@ int bt_ctf_stream_class_serialize(struct bt_ctf_stream_class *stream_class, struct metadata_context *context); BT_HIDDEN -int bt_ctf_stream_class_set_byte_order(struct bt_ctf_stream_class *stream_class, - enum bt_ctf_byte_order byte_order); +void bt_ctf_stream_class_set_byte_order( + struct bt_ctf_stream_class *stream_class, int byte_order); /* Set stream_class id without checking if the stream class is frozen */ BT_HIDDEN @@ -74,8 +79,4 @@ BT_HIDDEN int bt_ctf_stream_class_set_id_no_check( struct bt_ctf_stream_class *stream_class, uint32_t id); -BT_HIDDEN -int bt_ctf_stream_class_set_trace(struct bt_ctf_stream_class *stream_class, - struct bt_ctf_trace *trace); - #endif /* BABELTRACE_CTF_IR_STREAM_CLASS_INTERNAL_H */