thread.h 1.5 KB
Newer Older
1 2 3
#ifndef __PERF_THREAD_H
#define __PERF_THREAD_H

4 5
#include <linux/rbtree.h>
#include <unistd.h>
6
#include <sys/types.h>
7 8
#include "symbol.h"

9
struct thread {
10 11 12 13
	union {
		struct rb_node	 rb_node;
		struct list_head node;
	};
14
	struct map_groups	mg;
15
	pid_t			tid;
16
	pid_t			ppid;
17
	char			shortname[3];
18
	bool			comm_set;
19
	char			*comm;
20
	int			comm_len;
X
Xiao Guangrong 已提交
21 22

	void			*priv;
23 24
};

25
struct machine;
26

27
struct thread *thread__new(pid_t tid);
28 29
void thread__delete(struct thread *self);

30
int thread__set_comm(struct thread *self, const char *comm);
31
int thread__comm_len(struct thread *self);
32 33
void thread__insert_map(struct thread *self, struct map *map);
int thread__fork(struct thread *self, struct thread *parent);
34
size_t thread__fprintf(struct thread *thread, FILE *fp);
35

36 37
static inline struct map *thread__find_map(struct thread *self,
					   enum map_type type, u64 addr)
38
{
39
	return self ? map_groups__find(&self->mg, type, addr) : NULL;
40
}
41

42 43
void thread__find_addr_map(struct thread *thread, struct machine *machine,
			   u8 cpumode, enum map_type type, u64 addr,
44
			   struct addr_location *al, symbol_filter_t filter);
45

46 47
void thread__find_addr_location(struct thread *thread, struct machine *machine,
				u8 cpumode, enum map_type type, u64 addr,
48 49
				struct addr_location *al,
				symbol_filter_t filter);
50 51 52 53 54 55 56 57 58 59

static inline void *thread__priv(struct thread *thread)
{
	return thread->priv;
}

static inline void thread__set_priv(struct thread *thread, void *p)
{
	thread->priv = p;
}
60
#endif	/* __PERF_THREAD_H */