Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to print stack trace of StackOverflowException

I am developing a .Net 2.0 application in which a StackOverflowException occurs. Is there a way to print/log the stack trace before/during the application aborts? This is a long running server-side process which would be hard to execute under a debugger. I know that StackOverflowException can not be caught.

like image 528
shojtsy Avatar asked Apr 07 '10 09:04

shojtsy


1 Answers

Use ADPlus (from Windows Debugging Tools) to force a dump on crash.

E.g.

adplus -hang -pn <process name> -o <dump file>
like image 157
2 revs, 2 users 67% Avatar answered Nov 15 '22 17:11

2 revs, 2 users 67%