aboutsummaryrefslogtreecommitdiff
path: root/src/tools/perf/util/vdso.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/perf/util/vdso.h')
-rw-r--r--src/tools/perf/util/vdso.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/tools/perf/util/vdso.h b/src/tools/perf/util/vdso.h
deleted file mode 100644
index 0f76e7c..0000000
--- a/src/tools/perf/util/vdso.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef __PERF_VDSO__
-#define __PERF_VDSO__
-
-#include <linux/types.h>
-#include <string.h>
-#include <stdbool.h>
-
-#define VDSO__MAP_NAME "[vdso]"
-
-static inline bool is_vdso_map(const char *filename)
-{
- return !strcmp(filename, VDSO__MAP_NAME);
-}
-
-struct dso *vdso__dso_findnew(struct list_head *head);
-void vdso__exit(void);
-
-#endif /* __PERF_VDSO__ */