On 16.11.2013 17:26, jonat...@mugginsoft.com wrote:
My work around is to not call mono_jit_cleanup() at all.

I terminate Mono when I terminate my app so I presume that nothing untoward can 
occur.

If your app is depending on finalizers being executed at shutdown,
then in place of mono_jit_cleanup() you should call a managed method
that triggers a collection as a workaround:

GC.Collect ();
GC.WaitForPendingFinalizers();

Robert


_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to