Change tracepoint arguments order to put index-like arg first

This commit is contained in:
Christophe Bedard 2019-06-07 14:35:29 +02:00
parent 0671d021c0
commit ae62cc9531
3 changed files with 20 additions and 20 deletions

View file

@ -40,8 +40,8 @@ void TRACEPOINT(
*/
void TRACEPOINT(
rcl_publisher_init,
const void * node_handle,
const void * publisher_handle,
const void * node_handle,
const void * rmw_publisher_handle,
const char * topic_name,
const size_t depth);
@ -51,8 +51,8 @@ void TRACEPOINT(
*/
void TRACEPOINT(
rcl_subscription_init,
const void * node_handle,
const void * subscription_handle,
const void * node_handle,
const void * rmw_subscription_handle,
const char * topic_name,
const size_t depth);
@ -85,8 +85,8 @@ void TRACEPOINT(
*/
void TRACEPOINT(
rcl_service_init,
const void * node_handle,
const void * service_handle,
const void * node_handle,
const void * rmw_service_handle,
const char * service_name);
@ -117,8 +117,8 @@ void TRACEPOINT(
*/
void TRACEPOINT(
rcl_client_init,
const void * node_handle,
const void * client_handle,
const void * node_handle,
const void * rmw_client_handle,
const char * service_name);