I have an application that uses an AutoResetEvent (WaitOne/Set) in a queue for processing messages. I'm noticing that when I terminate the a debug session from Visual Studio (Shift+F5) the original process for the application hangs around (but not always). I manually re-attach the debugger to the process, and see it has single thread stuck on WaitHandle.WaitOne.

So my question is, what is the correct way to terminate threads that may be in a WaitOne state?

The first answer that sprang to mind was listen to the Application Exit event and doing a Set there, but I wasn't sure if this event was called reliably after these debug sessions, or if there is a more standard practice that I am not aware of.

And, as a second question, would you handle this differently for the application running in 'production' mode?

link|improve this question

78% accept rate
Hmm, you've got a nasty problem on your hands. Terminating the debugging session is done with the biggest gun available in Windows, TerminateProcess(). Same kind of gun used in Taskmgr.exe. There is only one possible way that this doesn't terminate the process, a kernel thread is busy and not completing an I/O request. That's most certainly not an AutoResetEvent. Doesn't make sense. – Hans Passant Jul 8 '11 at 23:40
@Hans - so the WaitHandle I am seeing in the call stack once attaching the debugger is not the wait handle for the signal, but a different wait handle for a kernel i/o task? The only i/o in this task is some logging, and that is really pretty straight forward (and only manually triggered every once in a while, not something happening with any frequency) – Matt Jul 9 '11 at 21:16
All I know is that what you describe doesn't make sense. So without any documentation whatsoever I'll readily assume the description is wrong. Post a stack trace with unmanaged debugging and Microsoft symbol servers enabled. – Hans Passant Jul 9 '11 at 21:21
@Hans thanks for the suggestion, will do so when I get back to the office and have the code handy. I appreciate the guidance. – Matt Jul 9 '11 at 23:20
I just realized that I do in fact have another I/O operation. My tired brain completely forgot about the TcpStream that is being read, and if I recall correctly when I glanced at the component I'm using it makes a blocking call to Read on the stream. Armed with this realization, and your the suggestions for more advanced debugging, I hope to resolve the problem on Mon – Matt Jul 10 '11 at 4:25
show 1 more comment
feedback

1 Answer

One solution is to set the thread as background thread using the Thread.IsBackground property. When set on a thread that thread will not stop a process for exiting.

However, the thread may be interrupted at any time usually leading to undefined behavior depending on what your thread is doing. The best way to terminate a thread in my humble opinion is to signal the thread to exit, e.g. by setting a quit flag and set the WaitHandle and to wake it up then Joining the thread.

link|improve this answer
The threading is actually being handled via a .NET 4 Task object. I suppose I could do some manual threading... – Matt Jul 9 '11 at 21:17
feedback

Your Answer

 
or
required, but never shown

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