lib: add pre condition asserts to check current thread has no error
[babeltrace.git] / src / lib / graph / message / message-iterator-inactivity.c
index 71afff63062d40d39a0a4050d8912a01eeb005b4..e5776ae0490fdd982b7c5ab0e296a0a8e8c3bbfe 100644 (file)
@@ -61,6 +61,7 @@ struct bt_message *bt_message_message_iterator_inactivity_create(
        struct bt_message_message_iterator_inactivity *message;
        struct bt_message *ret_msg = NULL;
 
+       BT_ASSERT_PRE_DEV_NO_ERROR();
        BT_ASSERT_PRE_NON_NULL(msg_iter, "Message iterator");
        BT_ASSERT_PRE_NON_NULL(default_clock_class, "Default clock class");
        BT_LIB_LOGD("Creating message iterator inactivity message object: "
@@ -101,7 +102,8 @@ bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
 {
        struct bt_message_message_iterator_inactivity *inactivity = (void *) msg;
 
-       BT_ASSERT_PRE_NON_NULL(msg, "Message");
-       BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY);
+       BT_ASSERT_PRE_DEV_NON_NULL(msg, "Message");
+       BT_ASSERT_PRE_DEV_MSG_IS_TYPE(msg,
+               BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY);
        return inactivity->default_cs;
 }
This page took 0.025826 seconds and 4 git commands to generate.