~mterry/ubuntu-app-launch/fix-ftbfs

« back to all changes in this revision

Viewing changes to exec-line-exec-trace.tp

Merged trunk

Show diffs side-by-side

added added

removed removed

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