Recently We have a production issue with application freezed, we tried to break in and analyse the dump file, unfortunately the call stack for the dump file does not looks good and hard to track down the cause of the freeze.
Recently We have a production issue with application freezed, we tried to break in
Share
If the application hung rather than crashed, try loading into windbg and run
!analyze -v -hangor try using adplus in hang mode. This tries to determine the cause of the hang which should give you a more meaningful call stack. The!lockscommand can be useful too if you have deadlock by showing you what is blocking on a resource.