perf tools: Set thread->mg.machine in all places
[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;
bf49c35f 20 int cpu;
0ec04e16 21 char shortname[3];
faa5c5c3 22 bool comm_set;
236a3bbd 23 bool dead; /* if set thread has exited */
1902efe7 24 struct list_head comm_list;
a4fb581b 25 int comm_len;
bcf6edcd
XG
26
27 void *priv;
6baa0a5a
FW
28};
29
743eb868 30struct machine;
4dfced35 31struct comm;
4b8cf846 32
99d725fc 33struct thread *thread__new(pid_t pid, pid_t tid);
cddcef60 34int thread__init_map_groups(struct thread *thread, struct machine *machine);
316c7136 35void thread__delete(struct thread *thread);
236a3bbd
DA
36static inline void thread__exited(struct thread *thread)
37{
38 thread->dead = true;
39}
591765fd 40
65de51f9
AH
41int __thread__set_comm(struct thread *thread, const char *comm, u64 timestamp,
42 bool exec);
43static inline int thread__set_comm(struct thread *thread, const char *comm,
44 u64 timestamp)
45{
46 return __thread__set_comm(thread, comm, timestamp, false);
47}
48
316c7136 49int thread__comm_len(struct thread *thread);
4dfced35 50struct comm *thread__comm(const struct thread *thread);
65de51f9 51struct comm *thread__exec_comm(const struct thread *thread);
b9c5143a 52const char *thread__comm_str(const struct thread *thread);
316c7136 53void thread__insert_map(struct thread *thread, struct map *map);
162f0bef 54int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
3f067dca 55size_t thread__fprintf(struct thread *thread, FILE *fp);
8b40f521 56
743eb868
ACM
57void thread__find_addr_map(struct thread *thread, struct machine *machine,
58 u8 cpumode, enum map_type type, u64 addr,
326f59bf 59 struct addr_location *al);
59ee68ec 60
743eb868
ACM
61void thread__find_addr_location(struct thread *thread, struct machine *machine,
62 u8 cpumode, enum map_type type, u64 addr,
61710bde 63 struct addr_location *al);
ba58041a 64
52a3cb8c
ACM
65void thread__find_cpumode_addr_location(struct thread *thread,
66 struct machine *machine,
67 enum map_type type, u64 addr,
68 struct addr_location *al);
69
ba58041a
DA
70static inline void *thread__priv(struct thread *thread)
71{
72 return thread->priv;
73}
74
75static inline void thread__set_priv(struct thread *thread, void *p)
76{
77 thread->priv = p;
78}
1f3878c1
DA
79
80static inline bool thread__is_filtered(struct thread *thread)
81{
82 if (symbol_conf.comm_list &&
83 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
84 return true;
85 }
86
87 return false;
88}
89
8b40f521 90#endif /* __PERF_THREAD_H */
This page took 0.211685 seconds and 5 git commands to generate.