summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/tracepoints/pipeline.tp
blob: c0a94635b488c7ae23c6e47827c7c7ba3784b53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
TRACEPOINT_EVENT(
	libcamera,
	ipa_call_begin,
	TP_ARGS(
		const char *, pipe,
		const char *, func
	),
	TP_FIELDS(
		ctf_string(pipeline_name, pipe)
		ctf_string(function_name, func)
	)
)

TRACEPOINT_EVENT(
	libcamera,
	ipa_call_end,
	TP_ARGS(
		const char *, pipe,
		const char *, func
	),
	TP_FIELDS(
		ctf_string(pipeline_name, pipe)
		ctf_string(function_name, func)
	)
)