2011-01-18 17:15:24 +00:00
|
|
|
#ifndef __PERF_THREAD_MAP_H
|
|
|
|
#define __PERF_THREAD_MAP_H
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2012-01-19 16:07:23 +00:00
|
|
|
#include <stdio.h>
|
2011-01-18 17:15:24 +00:00
|
|
|
|
|
|
|
struct thread_map {
|
|
|
|
int nr;
|
2012-04-05 16:26:26 +00:00
|
|
|
pid_t map[];
|
2011-01-18 17:15:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct thread_map *thread_map__new_by_pid(pid_t pid);
|
|
|
|
struct thread_map *thread_map__new_by_tid(pid_t tid);
|
2012-01-19 16:08:15 +00:00
|
|
|
struct thread_map *thread_map__new_by_uid(uid_t uid);
|
|
|
|
struct thread_map *thread_map__new(pid_t pid, pid_t tid, uid_t uid);
|
2012-02-08 16:32:52 +00:00
|
|
|
|
|
|
|
struct thread_map *thread_map__new_str(const char *pid,
|
|
|
|
const char *tid, uid_t uid);
|
|
|
|
|
2011-01-18 17:15:24 +00:00
|
|
|
void thread_map__delete(struct thread_map *threads);
|
2012-01-19 16:07:23 +00:00
|
|
|
|
|
|
|
size_t thread_map__fprintf(struct thread_map *threads, FILE *fp);
|
|
|
|
|
2011-01-18 17:15:24 +00:00
|
|
|
#endif /* __PERF_THREAD_MAP_H */
|