Skip to content
Snippets Groups Projects
Commit 475f04e1 authored by Olivier Dion's avatar Olivier Dion Committed by Sébastien Blin
Browse files

tracepoint: Add signal tracepoints

Change-Id: I6e471df8c0d9a3e4a80ab6a8686834fe0709d065
parent a9b95e22
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,39 @@ LTTNG_UST_TRACEPOINT_EVENT(
)
)
LTTNG_UST_TRACEPOINT_EVENT(
jami,
emit_signal,
LTTNG_UST_TP_ARGS(
const char*, signal_type
),
LTTNG_UST_TP_FIELDS(
lttng_ust_field_string(signal_type, signal_type)
)
)
LTTNG_UST_TRACEPOINT_EVENT(
jami,
emit_signal_begin_callback,
LTTNG_UST_TP_ARGS(
const char*, filename,
uint32_t, linum
),
LTTNG_UST_TP_FIELDS(
lttng_ust_field_string(source_filename, filename)
lttng_ust_field_integer(uint32_t, source_line, linum)
)
)
LTTNG_UST_TRACEPOINT_EVENT(
jami,
emit_signal_end_callback,
LTTNG_UST_TP_ARGS(
),
LTTNG_UST_TP_FIELDS(
)
)
#endif /* TRACEPOINT_DEF_H */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment