John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 1 | #ifndef __PERF_THREAD_H |
| 2 | #define __PERF_THREAD_H |
| 3 | |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 4 | #include <linux/rbtree.h> |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 5 | #include <unistd.h> |
| 6 | #include "symbol.h" |
| 7 | |
| 8 | struct thread { |
Ingo Molnar | b5fae12 | 2009-09-11 12:12:54 +0200 | [diff] [blame] | 9 | struct rb_node rb_node; |
Arnaldo Carvalho de Melo | 1b46cdd | 2009-09-28 14:48:46 -0300 | [diff] [blame] | 10 | struct rb_root maps; |
Arnaldo Carvalho de Melo | 439d473 | 2009-10-02 03:29:58 -0300 | [diff] [blame] | 11 | struct list_head removed_maps; |
Ingo Molnar | b5fae12 | 2009-09-11 12:12:54 +0200 | [diff] [blame] | 12 | pid_t pid; |
Ingo Molnar | 0ec04e1 | 2009-09-16 17:40:48 +0200 | [diff] [blame] | 13 | char shortname[3]; |
Ingo Molnar | b5fae12 | 2009-09-11 12:12:54 +0200 | [diff] [blame] | 14 | char *comm; |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 15 | int comm_len; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 16 | }; |
| 17 | |
| 18 | int thread__set_comm(struct thread *self, const char *comm); |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 19 | int thread__comm_len(struct thread *self); |
Arnaldo Carvalho de Melo | d5b889f | 2009-10-13 11:16:29 -0300 | [diff] [blame] | 20 | struct thread *threads__findnew(pid_t pid); |
| 21 | struct thread *register_idle_thread(void); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 22 | void thread__insert_map(struct thread *self, struct map *map); |
| 23 | int thread__fork(struct thread *self, struct thread *parent); |
Arnaldo Carvalho de Melo | d5b889f | 2009-10-13 11:16:29 -0300 | [diff] [blame] | 24 | size_t threads__fprintf(FILE *fp); |
John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 25 | |
Arnaldo Carvalho de Melo | 1b46cdd | 2009-09-28 14:48:46 -0300 | [diff] [blame] | 26 | void maps__insert(struct rb_root *maps, struct map *map); |
| 27 | struct map *maps__find(struct rb_root *maps, u64 ip); |
| 28 | |
Arnaldo Carvalho de Melo | fcf1203 | 2009-11-24 13:01:52 -0200 | [diff] [blame] | 29 | struct symbol *kernel_maps__find_function(const u64 ip, struct map **mapp, |
| 30 | symbol_filter_t filter); |
Arnaldo Carvalho de Melo | 439d473 | 2009-10-02 03:29:58 -0300 | [diff] [blame] | 31 | |
Arnaldo Carvalho de Melo | 1b46cdd | 2009-09-28 14:48:46 -0300 | [diff] [blame] | 32 | static inline struct map *thread__find_map(struct thread *self, u64 ip) |
| 33 | { |
| 34 | return self ? maps__find(&self->maps, ip) : NULL; |
| 35 | } |
| 36 | |
John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 37 | #endif /* __PERF_THREAD_H */ |