tools lib traceevent: Rename data2host*() APIs
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 data2host*() APIs 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.751088939@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:

committed by
Arnaldo Carvalho de Melo

parent
785be0c98d
commit
1affd34f19
@@ -102,7 +102,7 @@ static unsigned int read4(struct tep_handle *pevent)
|
||||
|
||||
if (do_read(&data, 4) < 0)
|
||||
return 0;
|
||||
return __data2host4(pevent, data);
|
||||
return __tep_data2host4(pevent, data);
|
||||
}
|
||||
|
||||
static unsigned long long read8(struct tep_handle *pevent)
|
||||
@@ -111,7 +111,7 @@ static unsigned long long read8(struct tep_handle *pevent)
|
||||
|
||||
if (do_read(&data, 8) < 0)
|
||||
return 0;
|
||||
return __data2host8(pevent, data);
|
||||
return __tep_data2host8(pevent, data);
|
||||
}
|
||||
|
||||
static char *read_string(void)
|
||||
|
Reference in New Issue
Block a user