diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 7203bff..230fe3c 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -725,6 +725,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
725 | } | 725 | } |
726 | catch (Exception e) | 726 | catch (Exception e) |
727 | { | 727 | { |
728 | // ThreadAbortExceptions need to go through unmolested. | ||
729 | if (e is ThreadAbortException) | ||
730 | throw e; | ||
731 | |||
728 | // Don't let a failure in an individual client thread crash the whole sim. | 732 | // Don't let a failure in an individual client thread crash the whole sim. |
729 | // FIXME: could do more sophisticated cleanup since leaving client resources around may | 733 | // FIXME: could do more sophisticated cleanup since leaving client resources around may |
730 | // cause instability for the region server over time. | 734 | // cause instability for the region server over time. |