Microsoft Knowledge Base Email Alertz

A .NET Framework 2.0-based application that targets to the x64 platform crashes for an uncaught ThreadAbortException exception

Search KbAlertz

Advanced Search

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]











Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks

Article ID: 2077754 - Last Review: July 7, 2010 - Revision: 2.0

A .NET Framework 2.0-based application that targets to the x64 platform crashes for an uncaught ThreadAbortException exception

System TipThis article applies to a different version of Windows than the one you are using. Content in this article may not be relevant to you. Visit the Windows Vista Solution Center

On This Page

SYMPTOMS

Consider the following scenario for a Microsofot .NET Framework 2.0-based application:
  • The application targets to x64 platform or Any CPU.
  • When you build the corresponding project, you specify the /o+ flag in the csc.exe command line. Or, you select the Optimize Code flag in the Build section of the Project Properties page in Visual Studio.
  • The source file in the project contains a try/catch block inside a loop. There is no execution code between the end of the catch block and the end of the loop. A ThreadAbortException exception is raised after the catch block.
  • The source file contains catch blocks in a higher function level that aims to catch the ThreadAbortException exception.
  • You run the application.
In this scenario, the exception is not caught and the application crashes unexpectedly.

RESOLUTION

Hotfix information

A supported hotfix is now available from Microsoft. However, it is intended to correct only the problem that is described in this article. Apply it only to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.

To resolve this problem immediately, contact Microsoft Customer Support Services to obtain the hotfix. For a complete list of Microsoft Customer Support Services telephone numbers and information about support costs, visit the following Microsoft Web site:
http://support.microsoft.com/contactus/?ws=support (http://support.microsoft.com/contactus/?ws=support)
Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

Prerequisites

There are no prerequisites to install this hotfix.

Restart requirement

You must restart the computer after you apply the hotfix.

Hotfix replacement information

This hotfix does not replace any other hotfixes.

File information

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.
For all supported x86-based versions of Windows 7
Collapse this tableExpand this table
File nameFile versionFile sizeDateTime
Mscorlib.dll2.0.50727.50204,550,65610-Jun-201022:58
Mscordacwks.dll2.0.50727.5020995,67210-Jun-201022:58
Mscorwks.dll2.0.50727.50205,822,80010-Jun-201022:58
Sos.dll2.0.50727.5020388,93610-Jun-201022:58
For all supported x64-based versions of Windows 7 and of Windows Server 2008 R2
Collapse this tableExpand this table
File nameFile versionFile sizeDateTime
Mscorlib.dll2.0.50727.50204,567,04010-Jun-201022:50
Mscordacwks.dll2.0.50727.50201,757,52810-Jun-201022:50
Mscorwks.dll2.0.50727.502010,043,72810-Jun-201022:50
Sos.dll2.0.50727.5020485,19210-Jun-201022:50
For all supported IA-64-based versions of Windows Server 2008 R2
Collapse this tableExpand this table
File nameFile versionFile sizeDateTime
Mscorlib.dll2.0.50727.50204,009,98410-Jun-201022:49
Mscordacwks.dll2.0.50727.50203,086,16810-Jun-201022:49
Mscorwks.dll2.0.50727.502020,187,47210-Jun-201022:49
Sos.dll2.0.50727.5020872,77610-Jun-201022:49

WORKAROUND

To work around this issue, add code between the end of the catch block and the end of the loop.

Reproduce Steps

To reproduce this issue, compile the following example code by using the csc.exe /o+ command and generate an application that targets to the x64 platform by using the .NET Framework 2.0.
using System;
using System.Threading;

class P
{
    private static void Foo()
    {
        while (true)
        {
            try
            {
                Thread.CurrentThread.Abort();
            }
            catch (Exception)
            {
                // throw;  
                Console.WriteLine("Inside catch");
            } 
        }
    }

    public static void Main(string[] a)
    {
        try
        {
            Foo();  
        }
        catch (System.Threading.ThreadAbortException)
        {
            System.Threading.Thread.ResetAbort();
        }

        Console.WriteLine("Done!");
    }
}
Before you install the hotfix, the application crashes; after you install the hotfix, you receive the following output in Console:
Inside catch
Done!

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:
824684  (http://kbalertz.com/Feedback.aspx?kbNumber=824684/ ) Description of the standard terminology that is used to describe Microsoft software updates

APPLIES TO
  • Microsoft .NET Framework 2.0 Service Pack 2
  • Windows 7 Enterprise
  • Windows 7 Home Premium
  • Windows 7 Professional
  • Windows 7 Ultimate
  • Windows Server 2008 R2 Datacenter
  • Windows Server 2008 R2 Enterprise
  • Windows Server 2008 R2 Standard
Keywords: 
kbqfe kbhotfixserver kbsurveynew kbexpertiseadvanced KB2077754
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate