blob: ea64ac00cc26447af38605b6e63a73dda6474bc4 [file] [log] [blame]
SELECT
ts,
thread.tid AS pid,
blocked_function AS func
FROM thread_state
JOIN thread USING (utid)
WHERE state = 'D'
ORDER BY ts;