X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf-ir%2Fmetadata.h;h=75697396a2c2d1d437c8595f234d1fda64bbe029;hp=024b50f1c4daed84e7d0cfe3c06822488dd365c3;hb=f380e105704874a3b1fc065122ca286397e3f83c;hpb=8b8dc96e023c365461d2407a3bf2220779bc7d05 diff --git a/include/babeltrace/ctf-ir/metadata.h b/include/babeltrace/ctf-ir/metadata.h index 024b50f1..75697396 100644 --- a/include/babeltrace/ctf-ir/metadata.h +++ b/include/babeltrace/ctf-ir/metadata.h @@ -29,14 +29,14 @@ #include struct ctf_trace; -struct ctf_stream_class; +struct ctf_stream_declaration; struct ctf_stream; struct ctf_event; struct ctf_stream; struct ctf_clock; struct ctf_stream { - struct ctf_stream_class *stream_class; + struct ctf_stream_declaration *stream_class; uint64_t timestamp; /* Current timestamp, in ns */ uint64_t event_id; /* Current event ID */ int has_timestamp; @@ -136,7 +136,7 @@ struct ctf_trace { struct declaration_scope *declaration_scope; /* innermost definition scope. to be used as parent of stream. */ struct definition_scope *definition_scope; - GPtrArray *streams; /* Array of struct ctf_stream_class pointers */ + GPtrArray *streams; /* Array of struct ctf_stream_declaration pointers */ struct ctf_stream *metadata; GHashTable *clocks; struct ctf_clock *single_clock; /* currently supports only one clock */ @@ -185,7 +185,7 @@ struct ctf_trace { (ctf_stream)->(field); \ }) -struct ctf_stream_class { +struct ctf_stream_declaration { struct ctf_trace *trace; /* parent is lexical scope conaining the stream scope */ struct declaration_scope *declaration_scope; @@ -223,7 +223,7 @@ struct ctf_stream_class { struct ctf_event { /* stream mapped by stream_id */ - struct ctf_stream_class *stream; + struct ctf_stream_declaration *stream; /* parent is lexical scope conaining the event scope */ struct declaration_scope *declaration_scope;