Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rmw_publisher_count_non_local_matched_subscriptions #221

Open
wants to merge 1 commit into
base: rolling
Choose a base branch
from
Open
Changes from all 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
7 changes: 7 additions & 0 deletions rmw_implementation/src/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,11 @@ RMW_INTERFACE_FN(
rmw_ret_t, RMW_RET_ERROR,
2, ARG_TYPES(const rmw_publisher_t *, size_t *))

RMW_INTERFACE_FN(
rmw_publisher_count_non_local_matched_subscriptions,
rmw_ret_t, RMW_RET_ERROR,
2, ARG_TYPES(const rmw_publisher_t *, size_t *))

RMW_INTERFACE_FN(
rmw_publisher_get_actual_qos,
rmw_ret_t, RMW_RET_ERROR,
Expand Down Expand Up @@ -808,6 +813,7 @@ void prefetch_symbols(void)
GET_SYMBOL(rmw_publish)
GET_SYMBOL(rmw_publish_loaned_message)
GET_SYMBOL(rmw_publisher_count_matched_subscriptions)
GET_SYMBOL(rmw_publisher_count_non_local_matched_subscriptions)
GET_SYMBOL(rmw_publisher_get_actual_qos)
GET_SYMBOL(rmw_publisher_event_init)
GET_SYMBOL(rmw_publish_serialized_message)
Expand Down Expand Up @@ -927,6 +933,7 @@ unload_library()
symbol_rmw_publish = nullptr;
symbol_rmw_publish_loaned_message = nullptr;
symbol_rmw_publisher_count_matched_subscriptions = nullptr;
symbol_rmw_publisher_count_non_local_matched_subscriptions = nullptr;
symbol_rmw_publisher_get_actual_qos = nullptr;
symbol_rmw_publisher_event_init = nullptr;
symbol_rmw_publish_serialized_message = nullptr;
Expand Down