lib: remove "unknown clock snapshot" concept
[babeltrace.git] / lib / graph / message / event.c
index 33e423e1ed1e6da34449df8b20da3cd5e4211420..d8e2b8ce6fc0821fb6abdb14558ab0f6430a1cc8 100644 (file)
@@ -255,10 +255,9 @@ const struct bt_event *bt_message_event_borrow_event_const(
        return borrow_event((void *) message);
 }
 
-enum bt_clock_snapshot_state
+const struct bt_clock_snapshot *
 bt_message_event_borrow_default_clock_snapshot_const(
-               const struct bt_message *msg,
-               const struct bt_clock_snapshot **snapshot)
+               const struct bt_message *msg)
 {
        struct bt_message_event *event_msg = (void *) msg;
        struct bt_stream_class *stream_class;
@@ -271,9 +270,7 @@ bt_message_event_borrow_default_clock_snapshot_const(
        BT_ASSERT_PRE(stream_class->default_clock_class,
                "Message's stream's class has no default clock class: "
                "%![msg-]+n, %![sc-]+S", msg, stream_class);
-       BT_ASSERT_PRE_NON_NULL(snapshot, "Clock snapshot (output)");
-       *snapshot = event_msg->default_cs;
-       return BT_CLOCK_SNAPSHOT_STATE_KNOWN;
+       return event_msg->default_cs;
 }
 
 const bt_clock_class *
This page took 0.022819 seconds and 4 git commands to generate.