summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTzvetomir Stoyanov <tstoyanov@vmware.com>2019-08-05 16:43:14 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-08-31 21:19:28 -0400
commit5d6552ab3b71fac48a9c7452c7014d37ca80b17f (patch)
tree440855c869cd4acebfbdcdf509880603d0f4b014
parent38847db9740a984e8538ce2573cbc0fc7edf22b3 (diff)
libtraceevent: Remove tep_register_trace_clock()
The tep_register_trace_clock() API is used to instruct the traceevent library how to print the event time stamps. As event print interface if redesigned, this API is not needed any more. The new event print API is flexible and the user can specify how the time stamps are printed. Signed-off-by: Tzvetomir Stoyanov <tstoyanov@vmware.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Patrick McLean <chutzpah@gentoo.org> Cc: linux-trace-devel@vger.kernel.org Link: http://lore.kernel.org/linux-trace-devel/20190801074959.22023-3-tz.stoyanov@gmail.com Link: http://lore.kernel.org/lkml/20190805204355.195042846@goodmis.org Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/lib/traceevent/event-parse-local.h2
-rw-r--r--tools/lib/traceevent/event-parse.c11
-rw-r--r--tools/lib/traceevent/event-parse.h1
3 files changed, 0 insertions, 14 deletions
diff --git a/tools/lib/traceevent/event-parse-local.h b/tools/lib/traceevent/event-parse-local.h
index 6e58ee1fe7c8..cee469803a34 100644
--- a/tools/lib/traceevent/event-parse-local.h
+++ b/tools/lib/traceevent/event-parse-local.h
@@ -81,8 +81,6 @@ struct tep_handle {
81 81
82 /* cache */ 82 /* cache */
83 struct tep_event *last_event; 83 struct tep_event *last_event;
84
85 char *trace_clock;
86}; 84};
87 85
88void tep_free_event(struct tep_event *event); 86void tep_free_event(struct tep_event *event);
diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c
index d1085aab9c43..bb22238debfe 100644
--- a/tools/lib/traceevent/event-parse.c
+++ b/tools/lib/traceevent/event-parse.c
@@ -393,16 +393,6 @@ int tep_override_comm(struct tep_handle *tep, const char *comm, int pid)
393 return _tep_register_comm(tep, comm, pid, true); 393 return _tep_register_comm(tep, comm, pid, true);
394} 394}
395 395
396int tep_register_trace_clock(struct tep_handle *tep, const char *trace_clock)
397{
398 tep->trace_clock = strdup(trace_clock);
399 if (!tep->trace_clock) {
400 errno = ENOMEM;
401 return -1;
402 }
403 return 0;
404}
405
406struct func_map { 396struct func_map {
407 unsigned long long addr; 397 unsigned long long addr;
408 char *func; 398 char *func;
@@ -7057,7 +7047,6 @@ void tep_free(struct tep_handle *tep)
7057 free_handler(handle); 7047 free_handler(handle);
7058 } 7048 }
7059 7049
7060 free(tep->trace_clock);
7061 free(tep->events); 7050 free(tep->events);
7062 free(tep->sort_events); 7051 free(tep->sort_events);
7063 free(tep->func_resolver); 7052 free(tep->func_resolver);
diff --git a/tools/lib/traceevent/event-parse.h b/tools/lib/traceevent/event-parse.h
index cf7f302eb44a..d438ee44289f 100644
--- a/tools/lib/traceevent/event-parse.h
+++ b/tools/lib/traceevent/event-parse.h
@@ -435,7 +435,6 @@ int tep_set_function_resolver(struct tep_handle *tep,
435void tep_reset_function_resolver(struct tep_handle *tep); 435void tep_reset_function_resolver(struct tep_handle *tep);
436int tep_register_comm(struct tep_handle *tep, const char *comm, int pid); 436int tep_register_comm(struct tep_handle *tep, const char *comm, int pid);
437int tep_override_comm(struct tep_handle *tep, const char *comm, int pid); 437int tep_override_comm(struct tep_handle *tep, const char *comm, int pid);
438int tep_register_trace_clock(struct tep_handle *tep, const char *trace_clock);
439int tep_register_function(struct tep_handle *tep, char *name, 438int tep_register_function(struct tep_handle *tep, char *name,
440 unsigned long long addr, char *mod); 439 unsigned long long addr, char *mod);
441int tep_register_print_string(struct tep_handle *tep, const char *fmt, 440int tep_register_print_string(struct tep_handle *tep, const char *fmt,