Cleanup: Remove unneeded local variables from function
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
index 593be445cafd8b455f23ac64a84ed3215104010f..024b50f1c4daed84e7d0cfe3c06822488dd365c3 100644 (file)
@@ -146,7 +146,7 @@ struct ctf_trace {
 
        uint64_t major;
        uint64_t minor;
-       unsigned char * uuid;
+       unsigned char uuid[BABELTRACE_UUID_LEN];
        int byte_order;         /* trace BYTE_ORDER. 0 if unset. */
        struct ctf_tracer_env env;
 
@@ -166,6 +166,9 @@ struct ctf_trace {
        /* Heap of streams, ordered to always get the lowest timestam */
        struct ptr_heap *stream_heap;
        char path[PATH_MAX];
+
+       struct bt_context *ctx;
+       struct bt_trace_handle *handle;
 };
 
 #define CTF_STREAM_SET_FIELD(ctf_stream, field)                                \
This page took 0.028297 seconds and 4 git commands to generate.