C# UnhandledException from another thread keeps looping

守給你的承諾、 提交于 2019-12-11 01:16:56

问题


I have a thread that is very simple. The only thing the Thread object does is throw new Exception();. The reason why I did that is because I needed to test what happens if a exception happens in a separate thread in my application. I have tested this with a "real" run time exception and my problem is the same.

What I do before I call the thread is:

AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException;
Application.Current.DispatcherUnhandledException += CurrentOnDispatcherUnhandledException;

//To handle exceptions in another thread
private void CurrentDomainOnUnhandledException(object sender, UnhandledExceptionEventArgs unhandledExceptionEventArgs)
{
    //Do nothing ignore exception
}

//To handle all exceptions in main thread
private static void CurrentOnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs dispatcherUnhandledExceptionEventArgs)
{
    dispatcherUnhandledExceptionEventArgs.Handled = true;
}

When this thread does throw a exception it first hits CurrentDomainOnUnhandledException like it should, and then it does not hit CurrentOnDispatcherUnhandledException. Right after CurrentDomainOnUnhandledException The stack then moves back to the Thread where it throws the exception and throws it again, executing the same line. It never stops doing this. It is basically a never ending loop and I can not figure out why.

The UnhandledExceptionEventArgs does not have a property to set, to say we have handled the exception and I am pretty sure this is part of the problem.

What am I doing wrong, how to I catch this UnhandledException in this thread, and let the thread continue to execute (preferred) or abort / kill the thread (not preferred) so that it does not continue to execute the throw new exception line.

I have tested this with debug and release (made sure debugging info on release was set to none) and this still happens in both versions, the exception continues to happen over and over again.

Thanks in advance, I am just stumped and have no idea why it does it.


回答1:


When this thread does throw a exception it first hits CurrentDomainOnUnhandledException like it should, and then it does not hit CurrentOnDispatcherUnhandledException. Right after CurrentDomainOnUnhandledException The stack then moves back to the Thread where it throws the exception and throws it again, executing the same line. It never stops doing this. It is basically a never ending loop and I can not figure out why.

You never handled the exception. You just returned back to the very same code that faulted in the first place. Say the code does this:

i = 1 / 0;
foo(i);

And say you catch the division by zero error, but in the handler, you do nothing but return. Well, what would you expect to happen? The code encountered a fatal error that makes further progress impossible and you did nothing to fix it. What value should i contain?!

Essentially, don't try to catch exceptions except as part of the design of the code that throws them. It just doesn't make sense, and whatever your outer problem is, there's probably a sensible way to do it.

But if a thread fails horribly, its process fails horribly. That's the nature of threads -- there's no isolation. Consider:

  1. Acquire lock
  2. Modify some object
  3. Release lock

What happens if the exception is thrown halfway through step 2? If your exception handler don't release the lock, the next thread to try to acquire it waits forever. If your exception handler does release the lock, the next thread to acquire it will access an object that's partially modified and perhaps in an inconsistent state. So an exception handler would have to make an intelligent decision, understand the code that threw the exception, as to what to do prior to releasing any locks held when the exception was thrown.

If you're going to catch the exception, you must figure out what the underlying problem is and repair it. In general, you can only do this if you fully understand the code that threw the exception. There's no generic way to do it because there's no generic way to repair a potentially corrupt object.

Ok, then how do I kill the thread in CurrentDomainOnUnhandledException so it stops looping the exception?

Generally that's not what you want to do. What if that thread holds locks? What if that thread allocated memory that it needs to release?

If you need this kind of isolation, use processes, not threads.



来源:https://stackoverflow.com/questions/12225011/c-sharp-unhandledexception-from-another-thread-keeps-looping

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!