When viewing deep function calls in the Runtime Flow window you may hit a WPF layout recursion limit. To illustrate this problem I created a very simple application:
class Program { static void Main(string[] args) { f(1); } static void f(int i) { if (i < 500) f(i + 1); } }
In Runtime Flow portable you can open maximum 58 recursive calls:
If you try to see more calls you get the following error:
The same problem exists when you view monitoring results in Visual Studio 2008/2005. In .NET 4.0 the layout recursion limit is increased from 255 to 4096. So in Visual Studio 2010 you can view much deeper stacks (though not 1024 deep due to other limitations).
I’ve created an additional Runtime Flow portable binary built for .NET 4.0 to enable more deep stack investigations:
If you have .NET 4.0 installed on the machine, it is now recommended to use RuntimeFlowPortable.NET40.exe instead of RuntimeFlowPortable.NET35.exe. It supports stacks up to 285 function calls:
Download link: Runtime Flow portable edition v1.3.1.