[Mono-bugs] [Bug 609285] App crashes randomly and also creates threads that seemed to be in wait state
    bugzilla_noreply at novell.com 
    bugzilla_noreply at novell.com
       
    Thu May 27 01:10:19 EDT 2010
    
    
  
http://bugzilla.novell.com/show_bug.cgi?id=609285
http://bugzilla.novell.com/show_bug.cgi?id=609285#c2
Geoff Norton <gnorton at novell.com> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID
--- Comment #2 from Geoff Norton <gnorton at novell.com> 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.
    
    
More information about the mono-bugs
mailing list