Merge tag 'pci-v3.15-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[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 };
9958e1f0 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);
316c7136 33void thread__delete(struct thread *thread);
236a3bbd
DA
34static inline void thread__exited(struct thread *thread)
35{
36 thread->dead = true;
37}
591765fd 38
162f0bef 39int thread__set_comm(struct thread *thread, const char *comm, u64 timestamp);
316c7136 40int thread__comm_len(struct thread *thread);
4dfced35 41struct comm *thread__comm(const struct thread *thread);
b9c5143a 42const char *thread__comm_str(const struct thread *thread);
316c7136 43void thread__insert_map(struct thread *thread, struct map *map);
162f0bef 44int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
3f067dca 45size_t thread__fprintf(struct thread *thread, FILE *fp);
8b40f521 46
743eb868
ACM
47void thread__find_addr_map(struct thread *thread, struct machine *machine,
48 u8 cpumode, enum map_type type, u64 addr,
326f59bf 49 struct addr_location *al);
59ee68ec 50
743eb868
ACM
51void thread__find_addr_location(struct thread *thread, struct machine *machine,
52 u8 cpumode, enum map_type type, u64 addr,
61710bde 53 struct addr_location *al);
ba58041a 54
52a3cb8c
ACM
55void thread__find_cpumode_addr_location(struct thread *thread,
56 struct machine *machine,
57 enum map_type type, u64 addr,
58 struct addr_location *al);
59
ba58041a
DA
60static inline void *thread__priv(struct thread *thread)
61{
62 return thread->priv;
63}
64
65static inline void thread__set_priv(struct thread *thread, void *p)
66{
67 thread->priv = p;
68}
1f3878c1
DA
69
70static inline bool thread__is_filtered(struct thread *thread)
71{
72 if (symbol_conf.comm_list &&
73 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
74 return true;
75 }
76
77 return false;
78}
79
8b40f521 80#endif /* __PERF_THREAD_H */
This page took 0.205051 seconds and 5 git commands to generate.