Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Bernhard Urban
You can try to run mono without inlining: `mono -O=-inline [...]' From: mono-list-boun...@lists.ximian.com on behalf of Alan Sent: Tuesday, June 21, 2016 2:33 AM To: Алексей Богомолов Cc: Mono List

Re: [Mono-dev] FW: Random hangs while running mono app

2016-06-21 Thread George, Glover E ERDC-RDE-ITL-MS CIV
Just realized I forgot one possibly important point. All I/O is now being done in /dev/shm (tmpfs) so any clustered file system load/performance issues should not affect the code. Cheers. From: > on

Re: [Mono-dev] FW: Random hangs while running mono app

2016-06-21 Thread George, Glover E ERDC-RDE-ITL-MS CIV
Hi Rodrigo, I finally can semi-reliably (most of the time) reproduce these hung processes. The strace, gdb backtrace, and CUE cards for a single hung mono instance is shown below. 1. I am now running on mono-4.4.0. The hanging issue still exists. 2. The code is compiled in VS 2015 and

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Alan
This happens on .NET too. This gives a good description of what's happening and why. http://www.hanselman.com/blog/ReleaseISNOTDebug64bitOptimizationsAndCMethodInliningInReleaseBuildCallStacks.aspx Alan On 21 June 2016 at 09:31, Алексей Богомолов wrote: > This behavior

[Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Алексей Богомолов
This behavior makes difficult to troubleshoot errors, especially in external libraries. Example code: public class ExceptionReThrow{ public void Test(){ try { M1 (); } catch (Exception ex) { Console.WriteLine(ex); } }