http://bugzilla.novell.com/show_bug.cgi?id=609285
http://bugzilla.novell.com/show_bug.cgi?id=609285#c2 Geoff Norton <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from Geoff Norton <[email protected]> 2010-05-27 05:10:18 UTC --- The threads are threadpool threads, which the runtime is keeping around for rapid reuse. The crash is because you are allowing one of your views which hold a UIBarButtonItem handler to get garbage collected when you shouldn't a common pattern which causes this is something like this void FinishedLaunching () { MyViewController mvc = new MyViewController (); window.AddSubview (mvc.View); } The next alpha release will have tools to aid in debugging these types of issues, but this is the cause of your crash. -- Configure bugmail: http://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
