Sign in
flutter
/
third_party
/
perfetto
/
d801f56ce3abc75adffb7d9f355368ce63ce4f0c
/
.
/
test
/
trace_processor
/
process_parent_pid.sql
blob: 8a50cc52f9558287aa36f171bd3c4d50695008e7 [
file
] [
log
] [
blame
]
SELECT
child
.
pid
as
child_pid
,
parent
.
pid
as
parent_pid
FROM
process
as
child
INNER
JOIN
process
as
parent
ON
child
.
parent_upid
=
parent
.
upid
ORDER
BY
child_pid