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