Leaking Stack Memory in Managed Code
There are only two real ways to leak stack space. The first is to have a method call that consumes significant stack resources and that never returns, thereby never releasing the associated stack frame. The other is by leaking a thread, and thus that thread's entire stack.
By default, the stack size on modern desktop and server versions of Windows® is 1MB.
Adopted from Debug Leaky Apps: Identify And Prevent Memory Leaks In Managed Code by James Kovacs.
Labels: Memory Leaks
0 Comments:
Post a Comment
<< Home