Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8820021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:30:25+00:00 2026-06-14T05:30:25+00:00

I have some complex functions that run in an async Task spawned via the

  • 0

I have some complex functions that run in an async Task spawned via the TPL, which could occasionally fail in unexpected ways. When such a failure occurs, this indicates a programming error which could have resulted in corrupted program state. Therefore, I don’t want my program to catch the exception, handle it and “limp on”, I want my process to crash and terminate.

I also want the thing to die in such a way that the Windows Error Reporting system detects it as a crash, and does all the useful debugging things like catching a minidump, sending it to Microsoft, etc.

I realise this may run counter to your opinions of what programs should do in error conditions, but the question is not about that.

The problem I have is, because the exception is raised from a task, it doesn’t immediately cause the process to crash. It crashes some time later when the garbage collector, in its wisdom, decides to collect the “unobserved” exception.

I want the process to crash immediately, because…

  • The call stack and thread dump from the actual error is what I want to collect in the crash dump
  • The process “limping on” and crashing some indeterminate time later could cause further damage, as it will be working on a possibly corrupt program state
  • Users get confused about what operation actually caused the crash to occur

So, in short, the question is:

How can I cause my process to crash from an async Task, created with the TPL, such that Windows Error Reporting is able to create a useful minidump?

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T05:30:26+00:00Added an answer on June 14, 2026 at 5:30 am

    You could try this, or something similar:

    public static Task FailFastOnException(this Task task) 
    { 
        task.ContinueWith(c => Environment.FailFast(“Task faulted”, c.Exception), 
            TaskContinuationOptions.OnlyOnFaulted | 
            TaskContinuationOptions.ExecuteSynchronously | 
            TaskContinuationOptions.DetachedFromParent); 
        return task; 
    }
    

    and then:

    var t = Task.Factory.StartNew(…).FailFastOnException();
    

    We’ve just used it a lot with “fire and forget” tasks that we want to take down the process if they for some reason fail.

    Taken from a blog post written by Stephen Toub:
    http://blogs.msdn.com/b/pfxteam/archive/2009/05/31/9674669.aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some complex regular expressions which I need to comment for readability and
I have some idea that it is due to some complex calculation, but i
I'm using .NET 3.5. We have some complex third-party classes which are automatically generated
I have a MVVM application that contains multiple views with some complex IsReadOnly rules
I have code written in c, which contains some complex algorithms and I want
I have a list of objects, that are pre-sorted based on some complex criteria
I have a templated function fct that uses some complex data structure based on
I have a .NET function that does some complex calculation. Depending on the parameters
I have some complex message to show inside of a flash message so instead
I have some complex types here so I decided to use nifty trick to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.