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
9struct 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
24struct machine;
25
26struct thread *thread__new(pid_t pid);
27void thread__delete(struct thread *self);
28
29int thread__set_comm(struct thread *self, const char *comm);
30int thread__comm_len(struct thread *self);
31void thread__insert_map(struct thread *self, struct map *map);
32int thread__fork(struct thread *self, struct thread *parent);
33size_t thread__fprintf(struct thread *thread, FILE *fp);
34
35static 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
41void 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
45void 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
50