~ted/ubuntu-app-launch/libertine-detection

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TRACEPOINT_EVENT(ubuntu_app_launch, exec_start,
	TP_ARGS(const char *, appid),
	TP_FIELDS(
		ctf_string(appid, appid)
	)
)
TRACEPOINT_EVENT(ubuntu_app_launch, exec_parse_complete,
	TP_ARGS(const char *, appid),
	TP_FIELDS(
		ctf_string(appid, appid)
	)
)
TRACEPOINT_EVENT(ubuntu_app_launch, exec_pre_exec,
	TP_ARGS(const char *, appid),
	TP_FIELDS(
		ctf_string(appid, appid)
	)
)