Remove address arg for register_callback tracepoint

This commit is contained in:
Christophe Bedard 2019-07-03 13:51:59 +02:00
parent 52e04a395b
commit 64cb3a2952
3 changed files with 4 additions and 9 deletions

View file

@ -182,15 +182,13 @@ void TRACEPOINT(
void TRACEPOINT(
rclcpp_callback_register,
const void * callback,
const char * function_symbol,
const void * address)
const char * function_symbol)
{
CONDITIONAL_TP(
ros2,
rclcpp_callback_register,
callback,
function_symbol,
address);
function_symbol);
}
void TRACEPOINT(