Blame view

kernel/linux-imx6_3.14.28/tools/perf/util/comm.h 457 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  #ifndef __PERF_COMM_H
  #define __PERF_COMM_H
  
  #include "../perf.h"
  #include <linux/rbtree.h>
  #include <linux/list.h>
  
  struct comm_str;
  
  struct comm {
  	struct comm_str *comm_str;
  	u64 start;
  	struct list_head list;
  };
  
  void comm__free(struct comm *comm);
  struct comm *comm__new(const char *str, u64 timestamp);
  const char *comm__str(const struct comm *comm);
  int comm__override(struct comm *comm, const char *str, u64 timestamp);
  
  #endif  /* __PERF_COMM_H */