List all qt threads handle
Hi *
There is a way of obtain the equivalent of QThread::currentThread () not just for the current thread but for all threads of the current process? or at least how to map the info retrieved from QThread::currentThread () and QThread::currentThreadId () on a win32 platform?
Re: List all qt threads handle
Quote:
Originally Posted by
marcofuics
or at least how to map the info retrieved from QThread::currentThread () and QThread::currentThreadId () on a win32 platform?
From the documentation of QThread::currentThreadId: "this function returns the DWORD (Windows-Thread ID) returned by the Win32 function getCurrentThreadId()"
Cheers,
_