X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace2%2Ftrace-ir%2Fevent.h;fp=include%2Fbabeltrace2%2Ftrace-ir%2Fevent.h;h=bcb2af3deca25384ab3d4b72b082c30c4cd127a7;hp=c571ca0bff23d01164b8bad9255e966273c8d2a6;hb=4c81a2b7cb0899f52a228249beb91f2814bbe601;hpb=f27423d42bce742b3cdc771fcbbdb2c88ee284ce diff --git a/include/babeltrace2/trace-ir/event.h b/include/babeltrace2/trace-ir/event.h index c571ca0b..bcb2af3d 100644 --- a/include/babeltrace2/trace-ir/event.h +++ b/include/babeltrace2/trace-ir/event.h @@ -169,7 +169,7 @@ An event has the following properties: @sa bt_event_borrow_class_const() — \c const version of this function. */ -extern bt_event_class *bt_event_borrow_class(bt_event *event); +extern bt_event_class *bt_event_borrow_class(bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -179,7 +179,7 @@ extern bt_event_class *bt_event_borrow_class(bt_event *event); See bt_event_borrow_class(). */ extern const bt_event_class *bt_event_borrow_class_const( - const bt_event *event); + const bt_event *event) __BT_NOEXCEPT; /*! @} */ @@ -205,7 +205,7 @@ extern const bt_event_class *bt_event_borrow_class_const( @sa bt_event_borrow_stream_const() — \c const version of this function. */ -extern bt_stream *bt_event_borrow_stream(bt_event *event); +extern bt_stream *bt_event_borrow_stream(bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -215,7 +215,7 @@ extern bt_stream *bt_event_borrow_stream(bt_event *event); See bt_event_borrow_stream(). */ extern const bt_stream *bt_event_borrow_stream_const( - const bt_event *event); + const bt_event *event) __BT_NOEXCEPT; /*! @} */ @@ -245,7 +245,7 @@ extern const bt_stream *bt_event_borrow_stream_const( @sa bt_event_borrow_packet_const() — \c const version of this function. */ -extern bt_packet *bt_event_borrow_packet(bt_event *event); +extern bt_packet *bt_event_borrow_packet(bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -255,7 +255,7 @@ extern bt_packet *bt_event_borrow_packet(bt_event *event); See bt_event_borrow_packet(). */ extern const bt_packet *bt_event_borrow_packet_const( - const bt_event *event); + const bt_event *event) __BT_NOEXCEPT; /*! @} */ @@ -282,7 +282,7 @@ See the \ref api-tir-ev-prop-payload "payload field" property. @sa bt_event_borrow_payload_field_const() — \c const version of this function. */ -extern bt_field *bt_event_borrow_payload_field(bt_event *event); +extern bt_field *bt_event_borrow_payload_field(bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -292,7 +292,7 @@ extern bt_field *bt_event_borrow_payload_field(bt_event *event); See bt_event_borrow_payload_field(). */ extern const bt_field *bt_event_borrow_payload_field_const( - const bt_event *event); + const bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -313,7 +313,7 @@ See the \ref api-tir-ev-prop-spec-ctx "specific context field" property. \c const version of this function. */ extern bt_field * -bt_event_borrow_specific_context_field(bt_event *event); +bt_event_borrow_specific_context_field(bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -323,7 +323,7 @@ bt_event_borrow_specific_context_field(bt_event *event); See bt_event_borrow_specific_context_field(). */ extern const bt_field *bt_event_borrow_specific_context_field_const( - const bt_event *event); + const bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -344,7 +344,7 @@ See the \ref api-tir-ev-prop-common-ctx "common context field" property. \c const version of this function. */ extern bt_field * -bt_event_borrow_common_context_field(bt_event *event); +bt_event_borrow_common_context_field(bt_event *event) __BT_NOEXCEPT; /*! @brief @@ -354,7 +354,7 @@ bt_event_borrow_common_context_field(bt_event *event); See bt_event_borrow_common_context_field(). */ extern const bt_field *bt_event_borrow_common_context_field_const( - const bt_event *event); + const bt_event *event) __BT_NOEXCEPT; /*! @} */