aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/trace-event.h
diff options
context:
space:
mode:
authorTzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>2018-09-19 14:56:56 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-09-19 16:29:26 -0400
commit785be0c98d24aaf417588322c74999520ea790a4 (patch)
tree53382dc3243b55fbd3bd2f62f97f5f8c3473f3b3 /tools/perf/util/trace-event.h
parent9334c9616b71202c751a12edf5f83f51ec5a1663 (diff)
tools lib traceevent: Rename struct plugin_list to struct tep_plugin_list
In order to make libtraceevent into a proper library, variables, data structures and functions require a unique prefix to prevent name space conflicts. That prefix will be "tep_". This renames struct plugin_list to struct tep_plugin_list Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com> Cc: linux-trace-devel@vger.kernel.org Link: http://lkml.kernel.org/r/20180919185724.586889128@goodmis.org Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/trace-event.h')
-rw-r--r--tools/perf/util/trace-event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/trace-event.h b/tools/perf/util/trace-event.h
index 2da6eff0caaf..f024d73bfc40 100644
--- a/tools/perf/util/trace-event.h
+++ b/tools/perf/util/trace-event.h
@@ -11,11 +11,11 @@ struct perf_sample;
11union perf_event; 11union perf_event;
12struct perf_tool; 12struct perf_tool;
13struct thread; 13struct thread;
14struct plugin_list; 14struct tep_plugin_list;
15 15
16struct trace_event { 16struct trace_event {
17 struct tep_handle *pevent; 17 struct tep_handle *pevent;
18 struct plugin_list *plugin_list; 18 struct tep_plugin_list *plugin_list;
19}; 19};
20 20
21int trace_event__init(struct trace_event *t); 21int trace_event__init(struct trace_event *t);