In C# when deubgging threads for example, you can see each thread's ID. But I couldn't find a way to get that same thread, programmatically. And I couldn't even get the id of the current thread (in the properties of the Thread.currentThread). So I wonder how does Visual Studio get the ids of the threads, and if there's a way to get the handle of the thread with id 2345 for example?
|
feedback
|
|
GetThreadId returns the ID of a given native thread. There's ways to make it work with managed threads, I'm sure, all you need to find is the thread handle and pass it to that function. GetCurrentThreadId returns the ID of the current thread. | |||||||||
feedback
|
|
You can use the deprecated This method is marked as deprecated because the .NET Thread object does not correspond to a single Windows thread, and as such there is no stable ID which can be returned by Windows for a given .NET thread. See configurator's answer for more reasons why this is the case. | |||
|
feedback
|
|
According to MSDN:
So basically, the | |||||
feedback
|
|
This should get you the current thread id.
To get a thread by it's OS thread ID, you can try a bit of linq.
It seems there is no way to enumerate the managed threads though (and no relation between ProcessThread and Thread) so getting a managed thread by it's Id is a tough one) | |||||||||||
feedback
|
|
To get the OS ID use:
| |||||||||||||||||
feedback
|
|
To find the current thread Id use - `Thread.CurrentThread.ManagedThreadId'. But in this case you might need the current win32 thread id - use pInvoke to get it with this function:
First you'll need to save the managed thread id and win32 thread id connection - use a dictionary that maps a win32 id to managed thread. Then to find a thread by it's id iterate over the process's thread using Process.GetCurrentProcess().Threads and find the thread with that id:
| |||||||
feedback
|
|
From managed code you have access to instances of the The ID displayed by Visual Studio is actually the OS thread ID. This is not the same as the managed thread ID as suggested by several replies. The | |||||||||||
feedback
|
|
If it is valid for VS studio to display unmanaged thread ids in the Threads debug window... then why isn't it valid for me to want to access this id sometimes? For example, I might like to write a simple trace message to a debug window that displays both the managed and unmanaged thread ids, so when I break in the debugger I can see which trace statements were written by each of my threads. If I am interested in what a particular thread is doing based on the trace messages it has written, I can go to the threads window, identify the thread of interest by it's unmanaged thread id, switch to it and then inspect it's call stack, local variables etc, etc... If I can only write the managed thread ids into the trace messages, then I cannot identify which thread is which in the Threads window. For M$ to stop us from accessing this unmanaged thread id is daft. We are big boys. We can handle the fact that it's not always a stable identifier for a managed thread. Oooooooh!! How scary!!! | |||
|
feedback
|
|
| |||||
feedback
|