X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf%2Fmetadata.h;h=85ff1cb8145922ec31ef59443907218114de5a02;hb=05c749e538ebc3a4f6735f62d022655cf92fc17e;hp=5547480922ede2466ea78fac251caad80404797c;hpb=e1151715912eaec959682b3bc10be3ced6abe467;p=babeltrace.git diff --git a/include/babeltrace/ctf/metadata.h b/include/babeltrace/ctf/metadata.h index 55474809..85ff1cb8 100644 --- a/include/babeltrace/ctf/metadata.h +++ b/include/babeltrace/ctf/metadata.h @@ -46,11 +46,11 @@ struct ctf_event; struct ctf_trace { /* root scope */ - struct type_scope *root_type_scope; + struct declaration_scope *root_declaration_scope; /* root scope */ struct definition_scope *root_definition_scope; - struct type_scope *type_scope; + struct declaration_scope *declaration_scope; struct definition_scope *definition_scope; GPtrArray *streams; /* Array of struct ctf_stream pointers*/ @@ -85,7 +85,7 @@ struct ctf_trace { struct ctf_stream { struct ctf_trace *trace; /* parent is lexical scope conaining the stream scope */ - struct type_scope *type_scope; + struct declaration_scope *declaration_scope; /* parent is trace scope */ struct definition_scope *definition_scope; GPtrArray *events_by_id; /* Array of struct ctf_event pointers indexed by id */ @@ -120,7 +120,7 @@ struct ctf_event { /* stream mapped by stream_id */ struct ctf_stream *stream; /* parent is lexical scope conaining the event scope */ - struct type_scope *type_scope; + struct declaration_scope *declaration_scope; /* parent is stream scope */ struct definition_scope *definition_scope; struct definition_struct *context;