machine.h 211 B

1234567891011
  1. #ifndef __PERF_MACHINE_H
  2. #define __PERF_MACHINE_H
  3. #include <sys/types.h>
  4. struct thread;
  5. struct machine;
  6. struct thread *machine__find_thread(struct machine *machine, pid_t pid);
  7. #endif /* __PERF_MACHINE_H */