https://bugzilla.novell.com/show_bug.cgi?id=432388
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=432388#c2 --- Comment #2 from Mark Probst <[EMAIL PROTECTED]> 2008-10-07 12:08:38 MDT --- The problem here is that the profiler shutdown (simple_shutdown()) calls mono_thread_attach(), at a time where the threading system has already shut down. On Linux the call does simply nothing, because mono_thread_current() still returns a thread, whereas on Win32 it does not, so mono_thread_attach() refuses to attach and instead waits for shutdown. Unfortunately, that particular thread is the last one alive, so it loops endlessly. The attached patch solves the problem. Massi: Do you have any objections? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
