5d1d16d83dc3c664ee7cfe03fbe83dc1c0babeaa
1 #ifndef _BABELTRACE_CTF_METADATA_H
2 #define _BABELTRACE_CTF_METADATA_H
9 * Copyright 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
22 #include <babeltrace/types.h>
30 struct declaration_scope
*scope
; /* root scope */
31 GArray
*streams
; /* Array of struct ctf_stream */
40 struct declaration_scope
*scope
; /* parent is trace scope */
41 GArray
*events_by_id
; /* Array of struct ctf_event indexed by id */
42 GHashTable
*event_quark_to_id
; /* GQuark to numeric id */
45 struct declaration_struct
*event_header
;
46 struct declaration_struct
*event_context
;
47 struct declaration_struct
*packet_context
;
51 struct declaration_scope
*scope
; /* parent is stream scope */
53 uint64_t id
; /* Numeric identifier within the stream */
55 struct declaration_struct
*context
;
56 struct declaration_struct
*fields
;
59 #endif /* _BABELTRACE_CTF_METADATA_H */
This page took 0.030265 seconds and 4 git commands to generate.