Add prospective callback register tracepoint

This commit is contained in:
Christophe Bedard 2019-05-28 14:16:38 +02:00
parent d36c3d824c
commit 3f13dd34d0
3 changed files with 41 additions and 0 deletions

View file

@ -219,3 +219,16 @@ TRACEPOINT_EVENT(
ctf_integer_hex(const void *, callback, callback_arg)
)
)
TRACEPOINT_EVENT(
ros2,
rclcpp_callback_register,
TP_ARGS(
const void *, handle_arg,
const char *, callback_arg
),
TP_FIELDS(
ctf_integer_hex(const void *, handle, handle_arg)
ctf_string(callback, callback_arg)
)
)