thread.h 1.3 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 15
	struct map_groups	mg;
	pid_t			pid;
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 pid);
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 45
			   struct addr_location *al);

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
#endif	/* __PERF_THREAD_H */