mirror of
https://github.com/ceph/ceph
synced 2025-01-27 21:44:58 +00:00
27fe5320bb
Signed-off-by: Mohamad Gebai <mgebai@suse.com>
24 lines
574 B
Plaintext
24 lines
574 B
Plaintext
#include "include/int_types.h"
|
|
|
|
TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_entry,
|
|
TP_ARGS(
|
|
void *, func_addr,
|
|
void *, call_site),
|
|
TP_FIELDS(
|
|
ctf_integer_hex(unsigned long, addr, func_addr)
|
|
ctf_integer_hex(unsigned long, call_site, call_site)
|
|
)
|
|
)
|
|
|
|
TRACEPOINT_EVENT(lttng_ust_cyg_profile, func_exit,
|
|
TP_ARGS(
|
|
void *, func_addr,
|
|
void *, call_site
|
|
),
|
|
TP_FIELDS(
|
|
ctf_integer_hex(unsigned long, addr, func_addr)
|
|
ctf_integer_hex(unsigned long, call_site, call_site)
|
|
)
|
|
)
|
|
|