|
@@ -81,6 +81,7 @@ static int add_hist_entries(struct perf_evlist *evlist, struct machine *machine)
|
|
|
};
|
|
|
|
|
|
sample.pid = fake_common_samples[k].pid;
|
|
|
+ sample.tid = fake_common_samples[k].pid;
|
|
|
sample.ip = fake_common_samples[k].ip;
|
|
|
if (perf_event__preprocess_sample(&event, machine, &al,
|
|
|
&sample) < 0)
|
|
@@ -104,6 +105,7 @@ static int add_hist_entries(struct perf_evlist *evlist, struct machine *machine)
|
|
|
};
|
|
|
|
|
|
sample.pid = fake_samples[i][k].pid;
|
|
|
+ sample.tid = fake_samples[i][k].pid;
|
|
|
sample.ip = fake_samples[i][k].ip;
|
|
|
if (perf_event__preprocess_sample(&event, machine, &al,
|
|
|
&sample) < 0)
|