Suppose the main thread is spawning a new thread t1, how can my code that runs on t1 find the thread id of the main thread (using c#)?
Edit:
I don't control the creation of the new thread. So I can't pass any parameters to the thread.
Thanks.
|
Suppose the main thread is spawning a new thread t1, how can my code that runs on t1 find the thread id of the main thread (using c#)? Edit: Thanks. |
|||||||
|
|
You can't. Yet you might consider:
|
|||
|
|
|
If you only have two threads and the second thread is a background thread you can enumerate all threads in the process and eliminate the background thread by reading the You can read more about foreground and background threads on MSDN. |
||||
|
|
|
I don't know if you have a property to do that, but you could add a new parameter to your thread an pass to it. It would be the easiest way I could think of... |
|||
|
|