Sign in
flutter
/
third_party
/
perfetto
/
5acf91d6a5cbdff82ee114bf6552c77fd3d66305
/
.
/
test
/
trace_processor
/
sched_waking_instants.sql
blob: 1fe4a765c2a149c544612a617caca3f879cd80fb [
file
] [
log
] [
blame
]
SELECT
ts
,
instants
.
name
,
thread
.
name
,
thread
.
tid
FROM
instants
JOIN
thread
ON
instants
.
ref
==
thread
.
utid
WHERE
instants
.
name
==
"sched_waking"
ORDER
BY
ts
ASC