Sign in
flutter
/
third_party
/
perfetto
/
2da94d52c55383ce544bcf486406f954cf88e0be
/
.
/
test
/
trace_processor
/
thread_time_in_state.sql
blob: ac87c0ff8d81d68e0f3b707bb1a4334753b9a1f1 [
file
] [
log
] [
blame
]
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
;