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.

I am likely missing something obvious, but humor me...

I always like to name the important threads in my apps as it is useful with debugging/logging etc. If you query the main thread's name via Thread.CurrentThread.Name at program startup you will get back null. As such, I always ensure that the first thing that happens is that the main thread (and any other relevent threads) get assigned a nice meaningful name for future reference.

I never really gave it much thought until today, but when looking at the Threads window in Visual Studio (before any thread names are assigned etc), a special category 'Main Thread' is assigned as well as a psuedo name that also reads "Main Thread" (but that isn't the actual thread name).

From a managed perspective, .NET doesn't expose anything meaningful on either System.Threading.Thread or System.Diagnostics.ProcessThread that identifies an application's main thread (at least that I could see). I looked at the list of Windows Process and Thread Functions, and again, I didn't see anything obvious (perhaps OpenThread?).

Curious if anyone knows how the Threads window assigns the special category "Main Thread"?

share|improve this question

1 Answer

up vote 4 down vote accepted

The debugger starts debugging with CreateProcess using the DEBUG_PROCESS option. The main thread's handle is returned in PROCESS_INFORMATION.hThread so no guessing there. Attaching is a bit trickier, presumably the first CREATE_THREAD_DEBUG_EVENT notification its sees from WaitForDebugEvent after attaching with DebugActiveProcess().

The source code for MDbg is available if you want to take a closer look.

share|improve this answer
Ah, that makes sense; thanks for the info. The SourceCode is definitely interesting. – Calgary Coder Feb 3 '11 at 20:56

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.