1 #ifndef __PERF_THREAD_H
2 #define __PERF_THREAD_H
3
4 #include <linux/rbtree.h>
5 #include <unistd.h>
6 #include <sys/types.h>
7 #include "symbol.h"
8
9 struct thread {
10 union {
11 struct rb_node rb_node;
12 struct list_head node;
13 };
14 struct map_groups mg;
15 pid_t pid;
16 char shortname[3];
17 bool comm_set;
18 char *comm;
19 int comm_len;
20
21 void *priv;
22 };
23
24 struct machine;
25
26 struct thread *thread__new(pid_t pid);
27 void thread__delete(struct thread *self);
28
29 int thread__set_comm(struct thread *self, const char *comm);
30 int thread__comm_len(struct thread *self);
31 void thread__insert_map(struct thread *self, struct map *map);
32 int thread__fork(struct thread *self, struct thread *parent);
33 size_t thread__fprintf(struct thread *thread, FILE *fp);
34
thread__find_map(struct thread * self,enum map_type type,u64 addr)35 static inline struct map *thread__find_map(struct thread *self,
36 enum map_type type, u64 addr)
37 {
38 return self ? map_groups__find(&self->mg, type, addr) : NULL;
39 }
40
41 void thread__find_addr_map(struct thread *thread, struct machine *machine,
42 u8 cpumode, enum map_type type, u64 addr,
43 struct addr_location *al);
44
45 void thread__find_addr_location(struct thread *thread, struct machine *machine,
46 u8 cpumode, enum map_type type, u64 addr,
47 struct addr_location *al,
48 symbol_filter_t filter);
49 #endif /* __PERF_THREAD_H */
50