Sign in
flutter
/
third_party
/
perfetto
/
d801f56ce3abc75adffb7d9f355368ce63ce4f0c
/
.
/
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
;