Sign in
flutter
/
third_party
/
perfetto
/
24d371f4ac976cc210cf2240d195080f43fbb39f
/
.
/
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