Files
Android11/external/perfetto/test/trace_processor/slice_with_pid.sql
2023-10-13 14:01:41 +00:00

5 lines
137 B
SQL

select s.name, dur, tid, pid
from slice s
join thread_track t on s.track_id = t.id
join thread using(utid)
left join process using(upid);