summaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-top.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo2017-04-25 20:30:47 +0200
committerArnaldo Carvalho de Melo2017-04-25 20:30:47 +0200
commit5ab8c689f7c0c97e98b8014b7f0ede386bef5aaf (patch)
tree1f0a6ccf61b7c6bf05ba51bc0673c0bf1f38dd49 /tools/perf/builtin-top.c
parentperf buildid: Move prototypes from util.h to build-id.h (diff)
downloadkernel-qcow2-linux-5ab8c689f7c0c97e98b8014b7f0ede386bef5aaf.tar.gz
kernel-qcow2-linux-5ab8c689f7c0c97e98b8014b7f0ede386bef5aaf.tar.xz
kernel-qcow2-linux-5ab8c689f7c0c97e98b8014b7f0ede386bef5aaf.zip
perf tools: Move event prototypes from util.h to event.h
More needs to be done to have the actual functions and variables in a smaller .c file that can then be included in the python binding, avoiding dragging more stuff into it. Link: http://lkml.kernel.org/n/tip-uecxz7cqkssouj7tlxrkqpl4@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r--tools/perf/builtin-top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 7ab42b8311a1..10b6362ca0bf 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -27,13 +27,13 @@
#include "util/drv_configs.h"
#include "util/evlist.h"
#include "util/evsel.h"
+#include "util/event.h"
#include "util/machine.h"
#include "util/session.h"
#include "util/symbol.h"
#include "util/thread.h"
#include "util/thread_map.h"
#include "util/top.h"
-#include "util/util.h"
#include <linux/rbtree.h>
#include <subcmd/parse-options.h>
#include "util/parse-events.h"