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>
This commit is contained in:
Tzvetomir Stoyanov (VMware)
2018-09-19 14:56:56 -04:00
committed by Arnaldo Carvalho de Melo
parent 9334c9616b
commit 785be0c98d
3 changed files with 15 additions and 15 deletions

View File

@@ -11,11 +11,11 @@ struct perf_sample;
union perf_event;
struct perf_tool;
struct thread;
struct plugin_list;
struct tep_plugin_list;
struct trace_event {
struct tep_handle *pevent;
struct plugin_list *plugin_list;
struct tep_plugin_list *plugin_list;
};
int trace_event__init(struct trace_event *t);