Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions rmw_implementation/src/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,12 @@ RMW_INTERFACE_FN(
1, ARG_TYPES(
rmw_feature_t))

RMW_INTERFACE_FN(
rmw_event_check_compatible,
bool, RMW_EVENT_INVALID,
1, ARG_TYPES(
rmw_event_type_t))

RMW_INTERFACE_FN(
rmw_take_dynamic_message,
rmw_ret_t, RMW_RET_ERROR,
Expand Down Expand Up @@ -841,6 +847,7 @@ void prefetch_symbols(void)
GET_SYMBOL(rmw_take_request)
GET_SYMBOL(rmw_send_response)
GET_SYMBOL(rmw_take_event)
GET_SYMBOL(rmw_event_check_compatible)
GET_SYMBOL(rmw_create_guard_condition)
GET_SYMBOL(rmw_destroy_guard_condition)
GET_SYMBOL(rmw_trigger_guard_condition)
Expand Down Expand Up @@ -999,6 +1006,7 @@ unload_library()
symbol_rmw_client_set_on_new_response_callback = nullptr;
symbol_rmw_event_set_callback = nullptr;
symbol_rmw_feature_supported = nullptr;
symbol_rmw_event_check_compatible = nullptr;
symbol_rmw_take_dynamic_message = nullptr;
symbol_rmw_take_dynamic_message_with_info = nullptr;
symbol_rmw_serialization_support_init = nullptr;
Expand Down