Running Threads Table

thread.list

This is a table of all running threads.

Iterate:

local idx, trd

for idx, trd in pairs(thread.list)
do
 -- idx is the internal C++ reference userdata
 -- trd is the thread object
end