Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / lib / trace-ir / stream-class.h
index 7610b9029a0b1bfd422368705b5d2afea53d1d65..d4984a1a6c2cd7fd91c0624b810c5ae366c55920 100644 (file)
@@ -32,6 +32,7 @@
 #include "common/macros.h"
 #include <glib.h>
 #include <inttypes.h>
+#include <stdbool.h>
 
 #include "field-class.h"
 #include "utils.h"
@@ -39,6 +40,9 @@
 struct bt_stream_class {
        struct bt_object base;
 
+       /* Owned by this */
+       struct bt_value *user_attributes;
+
        struct {
                GString *str;
 
@@ -49,6 +53,7 @@ struct bt_stream_class {
        uint64_t id;
        bool assigns_automatic_event_class_id;
        bool assigns_automatic_stream_id;
+       bool supports_packets;
        bool packets_have_beginning_default_clock_snapshot;
        bool packets_have_end_default_clock_snapshot;
        bool supports_discarded_events;
@@ -81,7 +86,7 @@ static inline
 struct bt_trace_class *bt_stream_class_borrow_trace_class_inline(
                const struct bt_stream_class *stream_class)
 {
-       BT_ASSERT(stream_class);
+       BT_ASSERT_DBG(stream_class);
        return (void *) bt_object_borrow_parent(&stream_class->base);
 }
 
This page took 0.023904 seconds and 4 git commands to generate.