blob: 54df0cdd300004df875d79649e2396f8b6e685b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __PERF_MACHINE_H
#define __PERF_MACHINE_H
#include <sys/types.h>
struct thread;
struct machine;
struct thread *machine__find_thread(struct machine *machine, pid_t pid);
#endif /* __PERF_MACHINE_H */
|