Blame view

kernel/linux-imx6_3.14.28/tools/perf/util/vdso.h 352 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #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__ */