perf tools: Fix one of the probe events to exclude kernel
[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
162f0bef 41int thread__set_comm(struct thread *thread, const char *comm, u64 timestamp);
316c7136 42int thread__comm_len(struct thread *thread);
4dfced35 43struct comm *thread__comm(const struct thread *thread);
b9c5143a 44const char *thread__comm_str(const struct thread *thread);
316c7136 45void thread__insert_map(struct thread *thread, struct map *map);
162f0bef 46int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
3f067dca 47size_t thread__fprintf(struct thread *thread, FILE *fp);
8b40f521 48
743eb868
ACM
49void thread__find_addr_map(struct thread *thread, struct machine *machine,
50 u8 cpumode, enum map_type type, u64 addr,
326f59bf 51 struct addr_location *al);
59ee68ec 52
743eb868
ACM
53void thread__find_addr_location(struct thread *thread, struct machine *machine,
54 u8 cpumode, enum map_type type, u64 addr,
61710bde 55 struct addr_location *al);
ba58041a 56
52a3cb8c
ACM
57void thread__find_cpumode_addr_location(struct thread *thread,
58 struct machine *machine,
59 enum map_type type, u64 addr,
60 struct addr_location *al);
61
ba58041a
DA
62static inline void *thread__priv(struct thread *thread)
63{
64 return thread->priv;
65}
66
67static inline void thread__set_priv(struct thread *thread, void *p)
68{
69 thread->priv = p;
70}
1f3878c1
DA
71
72static inline bool thread__is_filtered(struct thread *thread)
73{
74 if (symbol_conf.comm_list &&
75 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
76 return true;
77 }
78
79 return false;
80}
81
8b40f521 82#endif /* __PERF_THREAD_H */
This page took 0.215468 seconds and 5 git commands to generate.