lib: make trace IR API const-correct
[babeltrace.git] / include / babeltrace / trace-ir / trace-internal.h
index 8e8bfa0a7b3dd66ed44e4db3d33d01ff07488dc0..fcf1bd29ebad6d5e83f93bb80dc009b2c7b1cee0 100644 (file)
@@ -58,7 +58,7 @@ struct bt_trace {
                bt_uuid value;
        } uuid;
 
-       struct bt_private_value *environment;
+       struct bt_value *environment;
 
        /* Array of `struct bt_stream_class *` */
        GPtrArray *stream_classes;
@@ -86,7 +86,7 @@ struct bt_trace {
 };
 
 BT_HIDDEN
-void _bt_trace_freeze(struct bt_trace *trace);
+void _bt_trace_freeze(const struct bt_trace *trace);
 
 #ifdef BT_DEV_MODE
 # define bt_trace_freeze               _bt_trace_freeze
@@ -98,7 +98,7 @@ BT_HIDDEN
 void bt_trace_add_stream(struct bt_trace *trace, struct bt_stream *stream);
 
 BT_HIDDEN
-uint64_t bt_trace_get_automatic_stream_id(struct bt_trace *trace,
-               struct bt_stream_class *stream_class);
+uint64_t bt_trace_get_automatic_stream_id(const struct bt_trace *trace,
+               const struct bt_stream_class *stream_class);
 
 #endif /* BABELTRACE_TRACE_IR_TRACE_INTERNAL_H */
This page took 0.024977 seconds and 4 git commands to generate.