http://bugzilla.novell.com/show_bug.cgi?id=491191

http://bugzilla.novell.com/show_bug.cgi?id=491191#c2


Daniel Hughes <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P5 - None                   |P1 - Urgent
                 CC|                            |[email protected]

--- Comment #2 from Daniel Hughes <[email protected]> 2010-07-21 
10:42:13 UTC ---
I am to having this same problem with a program I am trying to port to mono. 

public static void Main (string[] args)
{
    Action action = () =>
    {
        throw new Exception("this should Kill the process but doesn't");
    };

    ThreadPool.QueueUserWorkItem(_ => action());
    while(true)
    {
        Thread.Sleep(1000);
        Console.WriteLine("wrongly still running");
    }
}

Mono should not be swallowing exceptions like this.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to