Sign in
flutter
/
third_party
/
perfetto
/
a0481ae89c39cce40d3254947aea35faaf5aed16
/
.
/
test
/
trace_processor
/
thread_time_in_state.sql
blob: ac87c0ff8d81d68e0f3b707bb1a4334753b9a1f1 [
file
]
SELECT
t
.
name
,
tid
,
c
.
ts
,
c
.
value
FROM
counter c
JOIN
thread_counter_track t
ON
c
.
track_id
=
t
.
id
JOIN
thread
USING
(
utid
)
ORDER
BY
c
.
ts
;