Sign in
flutter
/
third_party
/
perfetto
/
617e15e8dc973c3d4ffd37fce3a6ab52e0aaa816
/
.
/
test
/
trace_processor
/
process_tracking.sql
blob: 922cb7fad78fdc4306bb534c019a7b5ed04cfc0b [
file
] [
log
] [
blame
]
select
tid
,
pid
,
process
.
name
as
pname
,
thread
.
name
as
tname
from
thread
left
join
process
using
(
upid
)
where
tid
>
0
order
by
tid