Rename 'depth' to 'queue_depth'

This commit is contained in:
Christophe Bedard 2019-06-17 10:13:55 +02:00
parent 9c0f08aae0
commit 2b6966fd70
3 changed files with 10 additions and 10 deletions

View file

@ -44,7 +44,7 @@ void TRACEPOINT(
const void * node_handle,
const void * rmw_publisher_handle,
const char * topic_name,
const size_t depth);
const size_t queue_depth);
/**
* tp: rcl_subscription_init
@ -55,7 +55,7 @@ void TRACEPOINT(
const void * node_handle,
const void * rmw_subscription_handle,
const char * topic_name,
const size_t depth);
const size_t queue_depth);
/**
* tp: rclcpp_subscription_callback_added

View file

@ -36,14 +36,14 @@ TRACEPOINT_EVENT(
const void *, node_handle_arg,
const void *, rmw_publisher_handle_arg,
const char *, topic_name_arg,
const size_t, depth_arg
const size_t, queue_depth_arg
),
TP_FIELDS(
ctf_integer_hex(const void *, publisher_handle, publisher_handle_arg)
ctf_integer_hex(const void *, node_handle, node_handle_arg)
ctf_integer_hex(const void *, rmw_publisher_handle, rmw_publisher_handle_arg)
ctf_string(topic_name, topic_name_arg)
ctf_integer(const size_t, depth, depth_arg)
ctf_integer(const size_t, queue_depth, queue_depth_arg)
)
)
@ -55,14 +55,14 @@ TRACEPOINT_EVENT(
const void *, node_handle_arg,
const void *, rmw_subscription_handle_arg,
const char *, topic_name_arg,
const size_t, depth_arg
const size_t, queue_depth_arg
),
TP_FIELDS(
ctf_integer_hex(const void *, subscription_handle, subscription_handle_arg)
ctf_integer_hex(const void *, node_handle, node_handle_arg)
ctf_integer_hex(const void *, rmw_subscription_handle, rmw_subscription_handle_arg)
ctf_string(topic_name, topic_name_arg)
ctf_integer(const size_t, depth, depth_arg)
ctf_integer(const size_t, queue_depth, queue_depth_arg)
)
)

View file

@ -49,7 +49,7 @@ void TRACEPOINT(
const void * node_handle,
const void * rmw_publisher_handle,
const char * topic_name,
const size_t depth)
const size_t queue_depth)
{
CONDITIONAL_TP(
ros2,
@ -58,7 +58,7 @@ void TRACEPOINT(
node_handle,
rmw_publisher_handle,
topic_name,
depth);
queue_depth);
}
void TRACEPOINT(
@ -67,7 +67,7 @@ void TRACEPOINT(
const void * node_handle,
const void * rmw_subscription_handle,
const char * topic_name,
const size_t depth)
const size_t queue_depth)
{
CONDITIONAL_TP(
ros2,
@ -76,7 +76,7 @@ void TRACEPOINT(
node_handle,
rmw_subscription_handle,
topic_name,
depth);
queue_depth);
}
void TRACEPOINT(