aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2013-03-13 07:19:41 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-03-15 12:06:09 -0400
commitd301de830d89454a47947e9a3851708e8f3a8822 (patch)
tree9111f20e2c91306ad5ab82a0901da0939b74ea29 /tools
parentf3ff40ec8d92b36e60ebbbdb604ffeb5cfe6545f (diff)
perf tools: Remove unused struct definitions
struct event_list and struct events are never used. Just get rid of them. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/1363173585-9754-3-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/trace-event-info.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/perf/util/trace-event-info.c b/tools/perf/util/trace-event-info.c
index 5c1509ab0c29..b0bbd76f4a56 100644
--- a/tools/perf/util/trace-event-info.c
+++ b/tools/perf/util/trace-event-info.c
@@ -55,18 +55,6 @@ unsigned int page_size;
55static const char *output_file = "trace.info"; 55static const char *output_file = "trace.info";
56static int output_fd; 56static int output_fd;
57 57
58struct event_list {
59 struct event_list *next;
60 const char *event;
61};
62
63struct events {
64 struct events *sibling;
65 struct events *children;
66 struct events *next;
67 char *name;
68};
69
70 58
71static void *malloc_or_die(unsigned int size) 59static void *malloc_or_die(unsigned int size)
72{ 60{