Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
Fundamentally all threads in a process under Win32 are equal, there is no "main thread". .NET adds the refinement of background threads, but there is still no "main thread". – Richard Nov 18 '10 at 12:21
@Richard thanks for the correction. – Ohad Horesh Nov 19 '10 at 7:02

3 Answers

up vote 6 down vote accepted

You can't.

Yet you might consider:

  1. Prefix the name of the new thread with the thread ID from the parent thread
  2. Create a constructor on the method you want to spawn that requires the thread ID from the parent
share|improve this answer

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 Thread.IsBackground property. Not very pretty but perhaps what you need?

You can read more about foreground and background threads on MSDN.

share|improve this answer

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...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.