Files
Android11/external/perfetto/test/trace_processor/thread_main_thread.sql
2023-10-13 14:01:41 +00:00

7 lines
89 B
SQL

SELECT
tid,
is_main_thread
FROM thread
WHERE tid IN (5, 7, 11, 12, 99)
ORDER BY tid;