Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
[deliverable/linux.git] / tools / perf / util / thread.h
CommitLineData
8b40f521
JK
1#ifndef __PERF_THREAD_H
2#define __PERF_THREAD_H
3
6baa0a5a 4#include <linux/rbtree.h>
1902efe7 5#include <linux/list.h>
6baa0a5a 6#include <unistd.h>
9d2f8e22 7#include <sys/types.h>
6baa0a5a 8#include "symbol.h"
1f3878c1 9#include <strlist.h>
6baa0a5a 10
9958e1f0 11struct thread {
720a3aeb
ACM
12 union {
13 struct rb_node rb_node;
14 struct list_head node;
15 };
93d5731d 16 struct map_groups *mg;
99d725fc 17 pid_t pid_; /* Not all tools update this */
38051234 18 pid_t tid;
70c57efb 19 pid_t ppid;
0ec04e16 20 char shortname[3];
faa5c5c3 21 bool comm_set;
236a3bbd 22 bool dead; /* if set thread has exited */
1902efe7 23 struct list_head comm_list;
a4fb581b 24 int comm_len;
bcf6edcd
XG
25
26 void *priv;
6baa0a5a
FW
27};
28
743eb868 29struct machine;
4dfced35 30struct comm;
4b8cf846 31
99d725fc 32struct thread *thread__new(pid_t pid, pid_t tid);
cddcef60 33int thread__init_map_groups(struct thread *thread, struct machine *machine);
316c7136 34void thread__delete(struct thread *thread);
236a3bbd
DA
35static inline void thread__exited(struct thread *thread)
36{
37 thread->dead = true;
38}
591765fd 39
162f0bef 40int thread__set_comm(struct thread *thread, const char *comm, u64 timestamp);
316c7136 41int thread__comm_len(struct thread *thread);
4dfced35 42struct comm *thread__comm(const struct thread *thread);
b9c5143a 43const char *thread__comm_str(const struct thread *thread);
316c7136 44void thread__insert_map(struct thread *thread, struct map *map);
162f0bef 45int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
3f067dca 46size_t thread__fprintf(struct thread *thread, FILE *fp);
8b40f521 47
743eb868
ACM
48void thread__find_addr_map(struct thread *thread, struct machine *machine,
49 u8 cpumode, enum map_type type, u64 addr,
326f59bf 50 struct addr_location *al);
59ee68ec 51
743eb868
ACM
52void thread__find_addr_location(struct thread *thread, struct machine *machine,
53 u8 cpumode, enum map_type type, u64 addr,
61710bde 54 struct addr_location *al);
ba58041a 55
52a3cb8c
ACM
56void thread__find_cpumode_addr_location(struct thread *thread,
57 struct machine *machine,
58 enum map_type type, u64 addr,
59 struct addr_location *al);
60
ba58041a
DA
61static inline void *thread__priv(struct thread *thread)
62{
63 return thread->priv;
64}
65
66static inline void thread__set_priv(struct thread *thread, void *p)
67{
68 thread->priv = p;
69}
1f3878c1
DA
70
71static inline bool thread__is_filtered(struct thread *thread)
72{
73 if (symbol_conf.comm_list &&
74 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
75 return true;
76 }
77
78 return false;
79}
80
8b40f521 81#endif /* __PERF_THREAD_H */
This page took 0.207792 seconds and 5 git commands to generate.