thread.h 942 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef __PERF_THREAD_H
  2. #define __PERF_THREAD_H
  3. #include <linux/rbtree.h>
  4. #include <unistd.h>
  5. #include "symbol.h"
  6. struct thread {
  7. struct rb_node rb_node;
  8. struct rb_root maps;
  9. pid_t pid;
  10. char shortname[3];
  11. char *comm;
  12. };
  13. int thread__set_comm(struct thread *self, const char *comm);
  14. struct thread *
  15. threads__findnew(pid_t pid, struct rb_root *threads, struct thread **last_match);
  16. struct thread *
  17. register_idle_thread(struct rb_root *threads, struct thread **last_match);
  18. void thread__insert_map(struct thread *self, struct map *map);
  19. int thread__fork(struct thread *self, struct thread *parent);
  20. size_t threads__fprintf(FILE *fp, struct rb_root *threads);
  21. void maps__insert(struct rb_root *maps, struct map *map);
  22. struct map *maps__find(struct rb_root *maps, u64 ip);
  23. static inline struct map *thread__find_map(struct thread *self, u64 ip)
  24. {
  25. return self ? maps__find(&self->maps, ip) : NULL;
  26. }
  27. #endif /* __PERF_THREAD_H */