Solved Where is the information on threads held?

On Linux, /proc/$PID/task/ is a directory containing hard links to any tasks that have been started by this (i.e.: the parent) process.
Is there something equivalent on FreeBSD?
I am mostly interested to find out if a certain thread is pinned on a certain CPU; on which CPU it is currently running or on which CPU it last ran.
 
Back
Top