attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
if (raw_samples) {
+ attr->sample_type |= PERF_SAMPLE_TIME;
attr->sample_type |= PERF_SAMPLE_RAW;
attr->sample_type |= PERF_SAMPLE_CPU;
}
struct dso *dso = NULL;
struct thread *thread;
u64 ip = event->ip.ip;
+ u64 timestamp = -1;
u32 cpu = -1;
u64 period = 1;
void *more_data = event->ip.__more_data;
thread = threads__findnew(event->ip.pid, &threads, &last_match);
+ if (sample_type & PERF_SAMPLE_TIME) {
+ timestamp = *(u64 *)more_data;
+ more_data += sizeof(u64);
+ }
+
if (sample_type & PERF_SAMPLE_CPU) {
cpu = *(u32 *)more_data;
more_data += sizeof(u32);
* field, although it should be the same than this perf
* event pid
*/
- print_event(cpu, raw->data, raw->size, 0, thread->comm);
+ print_event(cpu, raw->data, raw->size, timestamp, thread->comm);
}
total += period;