Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tool.h
Go to the documentation of this file.
1 #ifndef __PERF_TOOL_H
2 #define __PERF_TOOL_H
3 
4 #include <stdbool.h>
5 
6 struct perf_session;
7 union perf_event;
8 struct perf_evlist;
9 struct perf_evsel;
10 struct perf_sample;
11 struct perf_tool;
12 struct machine;
13 
14 typedef int (*event_sample)(struct perf_tool *tool, union perf_event *event,
15  struct perf_sample *sample,
16  struct perf_evsel *evsel, struct machine *machine);
17 
18 typedef int (*event_op)(struct perf_tool *tool, union perf_event *event,
19  struct perf_sample *sample, struct machine *machine);
20 
21 typedef int (*event_attr_op)(union perf_event *event,
22  struct perf_evlist **pevlist);
23 typedef int (*event_simple_op)(struct perf_tool *tool, union perf_event *event);
24 
25 typedef int (*event_synth_op)(union perf_event *event,
26  struct perf_session *session);
27 
28 typedef int (*event_op2)(struct perf_tool *tool, union perf_event *event,
29  struct perf_session *session);
30 
31 struct perf_tool {
33  read;
35  comm,
36  fork,
37  exit,
38  lost,
39  throttle,
40  unthrottle;
45  build_id;
48 };
49 
50 #endif /* __PERF_TOOL_H */