Sign in
flutter
/
third_party
/
perfetto
/
f10b2053be67439539968c9f391f63664de779d4
/
.
/
test
/
trace_processor
/
sched_slices.sql
blob: 1e808d5cd2750caeba1fd9a08164a3ff10fa19d5 [
file
] [
log
] [
blame
]
SELECT
ts
,
cpu
,
dur
,
ts_end
,
end_state
,
priority
,
tid
,
name
FROM
sched
JOIN
thread
ON
sched
.
utid
==
thread
.
utid
ORDER
BY
cpu
,
sched
.
ts
ASC
;