|
@@ -327,9 +327,10 @@ struct thread *machine__findnew_thread(struct machine *machine, pid_t pid,
|
|
|
return __machine__findnew_thread(machine, pid, tid, true);
|
|
|
}
|
|
|
|
|
|
-struct thread *machine__find_thread(struct machine *machine, pid_t tid)
|
|
|
+struct thread *machine__find_thread(struct machine *machine, pid_t pid,
|
|
|
+ pid_t tid)
|
|
|
{
|
|
|
- return __machine__findnew_thread(machine, 0, tid, false);
|
|
|
+ return __machine__findnew_thread(machine, pid, tid, false);
|
|
|
}
|
|
|
|
|
|
int machine__process_comm_event(struct machine *machine, union perf_event *event,
|
|
@@ -1114,7 +1115,9 @@ static void machine__remove_thread(struct machine *machine, struct thread *th)
|
|
|
int machine__process_fork_event(struct machine *machine, union perf_event *event,
|
|
|
struct perf_sample *sample)
|
|
|
{
|
|
|
- struct thread *thread = machine__find_thread(machine, event->fork.tid);
|
|
|
+ struct thread *thread = machine__find_thread(machine,
|
|
|
+ event->fork.pid,
|
|
|
+ event->fork.tid);
|
|
|
struct thread *parent = machine__findnew_thread(machine,
|
|
|
event->fork.ppid,
|
|
|
event->fork.ptid);
|
|
@@ -1140,7 +1143,9 @@ int machine__process_fork_event(struct machine *machine, union perf_event *event
|
|
|
int machine__process_exit_event(struct machine *machine, union perf_event *event,
|
|
|
struct perf_sample *sample __maybe_unused)
|
|
|
{
|
|
|
- struct thread *thread = machine__find_thread(machine, event->fork.tid);
|
|
|
+ struct thread *thread = machine__find_thread(machine,
|
|
|
+ event->fork.pid,
|
|
|
+ event->fork.tid);
|
|
|
|
|
|
if (dump_trace)
|
|
|
perf_event__fprintf_task(event, stdout);
|