Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / tracing / cyg_profile.tp
1 #include "include/int_types.h"
2
3 TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_entry,
4     TP_ARGS(
5         void *,  func_addr,
6         void *,  call_site),
7     TP_FIELDS(
8           ctf_integer_hex(unsigned long, addr, func_addr)
9           ctf_integer_hex(unsigned long, call_site, call_site)
10     )
11 )
12
13 TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_exit,
14     TP_ARGS(
15           void *,  func_addr,
16           void *,  call_site
17     ),
18     TP_FIELDS(
19           ctf_integer_hex(unsigned long, addr, func_addr)
20           ctf_integer_hex(unsigned long, call_site, call_site)
21     )
22 )
23