Rename 'depth' to 'queue_depth'
This commit is contained in:
parent
9c0f08aae0
commit
2b6966fd70
3 changed files with 10 additions and 10 deletions
|
@ -44,7 +44,7 @@ void TRACEPOINT(
|
||||||
const void * node_handle,
|
const void * node_handle,
|
||||||
const void * rmw_publisher_handle,
|
const void * rmw_publisher_handle,
|
||||||
const char * topic_name,
|
const char * topic_name,
|
||||||
const size_t depth);
|
const size_t queue_depth);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* tp: rcl_subscription_init
|
* tp: rcl_subscription_init
|
||||||
|
@ -55,7 +55,7 @@ void TRACEPOINT(
|
||||||
const void * node_handle,
|
const void * node_handle,
|
||||||
const void * rmw_subscription_handle,
|
const void * rmw_subscription_handle,
|
||||||
const char * topic_name,
|
const char * topic_name,
|
||||||
const size_t depth);
|
const size_t queue_depth);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* tp: rclcpp_subscription_callback_added
|
* tp: rclcpp_subscription_callback_added
|
||||||
|
|
|
@ -36,14 +36,14 @@ TRACEPOINT_EVENT(
|
||||||
const void *, node_handle_arg,
|
const void *, node_handle_arg,
|
||||||
const void *, rmw_publisher_handle_arg,
|
const void *, rmw_publisher_handle_arg,
|
||||||
const char *, topic_name_arg,
|
const char *, topic_name_arg,
|
||||||
const size_t, depth_arg
|
const size_t, queue_depth_arg
|
||||||
),
|
),
|
||||||
TP_FIELDS(
|
TP_FIELDS(
|
||||||
ctf_integer_hex(const void *, publisher_handle, publisher_handle_arg)
|
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 *, node_handle, node_handle_arg)
|
||||||
ctf_integer_hex(const void *, rmw_publisher_handle, rmw_publisher_handle_arg)
|
ctf_integer_hex(const void *, rmw_publisher_handle, rmw_publisher_handle_arg)
|
||||||
ctf_string(topic_name, topic_name_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 *, node_handle_arg,
|
||||||
const void *, rmw_subscription_handle_arg,
|
const void *, rmw_subscription_handle_arg,
|
||||||
const char *, topic_name_arg,
|
const char *, topic_name_arg,
|
||||||
const size_t, depth_arg
|
const size_t, queue_depth_arg
|
||||||
),
|
),
|
||||||
TP_FIELDS(
|
TP_FIELDS(
|
||||||
ctf_integer_hex(const void *, subscription_handle, subscription_handle_arg)
|
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 *, node_handle, node_handle_arg)
|
||||||
ctf_integer_hex(const void *, rmw_subscription_handle, rmw_subscription_handle_arg)
|
ctf_integer_hex(const void *, rmw_subscription_handle, rmw_subscription_handle_arg)
|
||||||
ctf_string(topic_name, topic_name_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)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ void TRACEPOINT(
|
||||||
const void * node_handle,
|
const void * node_handle,
|
||||||
const void * rmw_publisher_handle,
|
const void * rmw_publisher_handle,
|
||||||
const char * topic_name,
|
const char * topic_name,
|
||||||
const size_t depth)
|
const size_t queue_depth)
|
||||||
{
|
{
|
||||||
CONDITIONAL_TP(
|
CONDITIONAL_TP(
|
||||||
ros2,
|
ros2,
|
||||||
|
@ -58,7 +58,7 @@ void TRACEPOINT(
|
||||||
node_handle,
|
node_handle,
|
||||||
rmw_publisher_handle,
|
rmw_publisher_handle,
|
||||||
topic_name,
|
topic_name,
|
||||||
depth);
|
queue_depth);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TRACEPOINT(
|
void TRACEPOINT(
|
||||||
|
@ -67,7 +67,7 @@ void TRACEPOINT(
|
||||||
const void * node_handle,
|
const void * node_handle,
|
||||||
const void * rmw_subscription_handle,
|
const void * rmw_subscription_handle,
|
||||||
const char * topic_name,
|
const char * topic_name,
|
||||||
const size_t depth)
|
const size_t queue_depth)
|
||||||
{
|
{
|
||||||
CONDITIONAL_TP(
|
CONDITIONAL_TP(
|
||||||
ros2,
|
ros2,
|
||||||
|
@ -76,7 +76,7 @@ void TRACEPOINT(
|
||||||
node_handle,
|
node_handle,
|
||||||
rmw_subscription_handle,
|
rmw_subscription_handle,
|
||||||
topic_name,
|
topic_name,
|
||||||
depth);
|
queue_depth);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TRACEPOINT(
|
void TRACEPOINT(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue